Home
last modified time | relevance | path

Searched refs:getElement (Results 1 – 25 of 48) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp266 RecordVal *ColFieldName = CurInstr->getValue(ColFields->getElement(j)); in isKeyColInstr()
268 std::string KeyColValue = KeyCol->getElement(j)->getAsUnquotedString(); in isKeyColInstr()
325 Init *ColFieldJ = ColFields->getElement(j); in getInstrForColumn()
328 Init *ColFieldJVallue = CurValueCol->getElement(j); in getInstrForColumn()
447 std::string ColName = ColFields->getElement(j)->getAsUnquotedString(); in emitMapFuncBody()
450 OS << ColName << "_" << ColumnI->getElement(j)->getAsUnquotedString(); in emitMapFuncBody()
514 auto *ListJ = cast<ListInit>(List->getElement(j)); in emitEnums()
524 std::string ColName = ColFields->getElement(j)->getAsUnquotedString(); in emitEnums()
525 ColFieldValueMap[ColName].push_back((ValueCols[k])->getElement(j)); in emitEnums()
H A DCodeGenRegisters.cpp624 ST.evaluate(SubRegs->getElement(i), Lists[i], Def->getLoc()); in expand()
770 RegBank.getSets().evaluate(AltOrders->getElement(i), Order, R->getLoc()); in CodeGenRegisterClass()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dconstfold.c849 Expression *ee1 = es1->getElement(i); in Equal()
850 Expression *ee2 = es2->getElement(i); in Equal()
883 Expression *ee2 = es2->getElement(i); in Equal()
1338 Expression *e = ale->getElement((size_t)i); in Index()
1363 Expression *e = ale->getElement((size_t)i); in Index()
1501 unsigned val = (unsigned)newae->getElement(j)->toInteger(); in sliceAssignStringFromArrayLiteral()
1545 unsigned val2 = (unsigned)ae2->getElement(j + lo2)->toInteger(); in sliceCmpStringWithArray()
1694 (*elems)[i] = ea->getElement(i); in Cat()
1713 (*elems)[es->len + i] = ea->getElement(i); in Cat()
H A Ddmangle.c770 e->getElement(i)->accept(this); in visit()
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangOpcodesEmitter.cpp73 if (auto *TypeClass = dyn_cast<DefInit>(Types->getElement(I))) { in Enumerate()
293 if (auto *TypeClass = dyn_cast<DefInit>(Types->getElement(I))) { in EmitGroup()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtObjC.h34 Stmt *getElement() { return SubExprs[ELEM]; } in getElement() function
40 const Stmt *getElement() const { return SubExprs[ELEM]; } in getElement() function
H A DExprObjC.h232 Expr *getElement(unsigned Index) { in getElement() function
236 const Expr *getElement(unsigned Index) const { in getElement() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DDebugInfoMetadata.cpp1500 (getElement(0) != dwarf::DW_OP_consts && in isConstant()
1501 getElement(0) != dwarf::DW_OP_constu)) in isConstant()
1504 if (getNumElements() == 2 && getElement(0) == dwarf::DW_OP_consts) in isConstant()
1507 if ((getNumElements() == 3 && getElement(2) != dwarf::DW_OP_stack_value) || in isConstant()
1508 (getNumElements() == 6 && (getElement(2) != dwarf::DW_OP_stack_value || in isConstant()
1509 getElement(3) != dwarf::DW_OP_LLVM_fragment))) in isConstant()
1511 return getElement(0) == dwarf::DW_OP_constu in isConstant()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DRecord.cpp621 return getElement(Elements[0]); in convertInitListSlice()
629 Vals.push_back(getElement(Element)); in convertInitListSlice()
636 DefInit *DI = dyn_cast<DefInit>(getElement(i)); in getElementAsRecord()
782 return LHSl->getElement(0); in Fold()
896 StringInit *Element = dyn_cast<StringInit>(List->getElement(0)); in interleaveStringList()
904 StringInit *Element = dyn_cast<StringInit>(List->getElement(I)); in interleaveStringList()
918 dyn_cast_or_null<IntInit>(List->getElement(0) in interleaveIntList()
927 dyn_cast_or_null<IntInit>(List->getElement(I) in interleaveIntList()
1370 Init *Node = MHSl ? MHSl->getElement(i) : UnsetInit::get(); in Fold()
1371 Init *Name = RHSl ? RHSl->getElement(i) : UnsetInit::get(); in Fold()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp111 const Stmt *elem = S->getElement(); in VisitObjCForCollectionStmt()
H A DBugReporter.cpp1108 return FS->getElement(); in getTerminatorCondition()
1387 return cast<ObjCForCollectionStmt>(S)->getElement() == Cond; in isConditionForTerminator()
1901 s2End == FS->getElement()) { in optimizeEdges()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp323 warnIfNilExpr(AL->getElement(i), "Array element cannot be nil", C); in checkPostStmt()
891 const Stmt *Element = FCS->getElement(); in checkElementNonNil()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjC.cpp169 const Expr *Rhs = ALE->getElement(i); in EmitObjCCollectionLiteral()
1725 if (const DeclStmt *SD = dyn_cast<DeclStmt>(S.getElement())) in EmitObjCForCollectionStmt()
1877 if (const DeclStmt *SD = dyn_cast<DeclStmt>(S.getElement())) { in EmitObjCForCollectionStmt()
1892 elementType = cast<Expr>(S.getElement())->getType(); in EmitObjCForCollectionStmt()
1952 elementLValue = EmitLValue(cast<Expr>(S.getElement())); in EmitObjCForCollectionStmt()
2020 elementLValue = EmitLValue(cast<Expr>(S.getElement())); in EmitObjCForCollectionStmt()
H A DCodeGenPGO.cpp604 Visit(S->getElement()); in VisitObjCForCollectionStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DLiveVariables.cpp399 Stmt *element = OS->getElement(); in VisitObjCForCollectionStmt()
H A DUninitializedValues.cpp691 if (const auto *DS = dyn_cast<DeclStmt>(FS->getElement())) { in VisitObjCForCollectionStmt()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp1360 static_cast<int64_t>(BE->getElement(1)) != DefaultLowerBound) in constructGenericSubrangeDIE()
1362 BE->getElement(1)); in constructGenericSubrangeDIE()
H A DCodeViewDebug.cpp1204 VI.Expr->getElement(0) == llvm::dwarf::DW_OP_deref) in collectVariableInfoFromMFTable()
3255 APSInt Value(APInt(/*BitWidth=*/64, DIE->getElement(1)), isUnsigned); in emitDebugInfoForGlobal()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtPrinter.cpp336 if (auto *DS = dyn_cast<DeclStmt>(Node->getElement())) in VisitObjCForCollectionStmt()
339 PrintExpr(cast<Expr>(Node->getElement())); in VisitObjCForCollectionStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp482 Objs.push_back(ArrLit->getElement(i)); in getNSArrayObjects()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h2582 uint64_t getElement(unsigned I) const { in getElement() function
2714 return getNumElements() > 0 && getElement(0) == dwarf::DW_OP_deref; in startsWithDeref()
2874 getElement(0) == dwarf::DW_OP_LLVM_entry_value; in isEntryValue()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dexpression.h425 Expression *getElement(d_size_t i); // use opIndex instead
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dexpr.cc2668 Expression *expr = e->getElement (i); in visit()
2957 Expression *expr = ale->getElement (i); in visit()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dexpr.cc2729 Expression *expr = e->getElement (i); in visit()
3007 Expression *expr = ale->getElement (i); in visit()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp1290 Record.AddStmt(E->getElement(i)); in VisitObjCArrayLiteral()
1439 Record.AddStmt(S->getElement()); in VisitObjCForCollectionStmt()

12