Searched defs:Index (Results 101 - 125 of 181) sorted by relevance

12345678

/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp68 int Index; member in class:__anon8798::COFFSymbol
156 void MakeSymbolReal(COFFSymbol &S, size_t Index);
498 void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) { argument
505 S.Index = Index;
746 coff_symbol->Index = -1;
753 assert(coff_symbol->Index != -1);
758 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = coff_symbol->Other->Index;
807 assert((*cr).Symb->Index != -1);
808 (*cr).Data.SymbolTableIndex = (*cr).Symb->Index;
[all...]
H A DELFObjectWriter.cpp448 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ? local
455 String16(*SymtabF, Index); // st_shndx
464 String16(*SymtabF, Index); // st_shndx
697 int Index = 0; local
724 Index = F->getParent()->getOrdinal() + 1;
733 Index = -1;
763 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend, Fixup);
830 unsigned Index = 1; local
837 SectionIndexMap[&Section] = Index++;
848 SectionIndexMap[&Section] = Index
960 unsigned Index = 1; local
1182 uint64_t Index = 1; local
1255 unsigned Index = SectionIndexMap.lookup(&Section); local
[all...]
H A DMCAsmStreamer.cpp1179 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j; local
1180 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1181 FixupMap[Index] = 1 + i;
/external/llvm/lib/Target/CellSPU/
H A DSPUISelDAGToDAG.cpp243 SDValue &Index);
247 SDValue &Index);
259 SDValue &Index);
311 \arg Index The base address index
315 SDValue &Index) {
325 Index = Zero;
348 Index = Zero;
356 Index = Zero;
381 \arg Index Base address index
386 \return true if \a N is a D-form address with \a Base and \a Index se
314 SelectAFormAddr(SDNode *Op, SDValue N, SDValue &Base, SDValue &Index) argument
390 SelectDFormAddr(SDNode *Op, SDValue N, SDValue &Base, SDValue &Index) argument
398 DFormAddressPredicate(SDNode *Op, SDValue N, SDValue &Base, SDValue &Index, int minOffset, int maxOffset) argument
554 SelectXFormAddr(SDNode *Op, SDValue N, SDValue &Base, SDValue &Index) argument
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp138 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) { argument
139 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG);
144 bool SelectAddrIdxOnly(SDValue N, SDValue &Base, SDValue &Index) { argument
145 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG);
/external/llvm/lib/VMCore/
H A DConstantFold.cpp749 uint64_t Index = CIdx->getZExtValue(); local
751 if (Index >= Val->getType()->getVectorNumElements())
753 return Val->getAggregateElement(Index);
/external/clang/lib/CodeGen/
H A DCGCleanup.cpp916 llvm::ConstantInt *Index = Builder.getInt32(Dest.getDestIndex()); local
917 new llvm::StoreInst(Index, getNormalCleanupDestSlot(), BI);
938 Scope.addBranchAfter(Index, Dest.getBlock());
H A DCGRecordLayoutBuilder.cpp1125 unsigned Index = 0; local
1128 ++Index;
1129 BFIs.push_back(std::make_pair(Index, &it->second));
/external/clang/lib/Driver/
H A DDriver.cpp1089 unsigned Index = Args.getBaseArgs().MakeIndex("-"); local
1090 Arg *A = Opts->ParseOneArg(Args, Index);
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp841 // There must be a method to do the Index'ed assignment.
853 // Various warnings about objc Index'ed assignments in ARC.
862 /// Capture the base object of an Objective-C Index'ed expression.
1232 // Get the object at "Index" position in the container.
1242 Expr *Index = InstanceKey; local
1245 Expr *args[] = { Index };
1254 /// Store into the container the "op" object at "Index"'ed location
1265 Expr *Index = InstanceKey; local
1268 Expr *args[] = { op, Index };
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas89 /// <see cref="IIntStream.Index"/>, or some other marker.</returns>
97 function Index: Integer;
101 /// <see cref="IIntStream.Index"/> would return marker.
104 /// The marker will usually be <see cref="IIntStream.Index"/> but
166 procedure Seek(const Index: Integer);
379 /// <summary>Index into the char stream of next lookahead char </summary>
1288 procedure InsertAfter(const Index: Integer; const Text: IANTLRInterface); overload;
1291 procedure InsertAfter(const ProgramName: String; const Index: Integer;
1294 procedure InsertAfter(const Index: Integer; const Text: String); overload;
1297 procedure InsertAfter(const ProgramName: String; const Index
1654 function Index: Integer; function
[all...]
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable.h619 struct Index { struct in namespace:syncable
948 typedef Index<MetahandleIndexer>::Set MetahandlesIndex;
949 typedef Index<IdIndexer>::Set IdsIndex;
953 typedef Index<ParentIdAndHandleIndexer>::Set ParentIdChildIndex;
959 typedef Index<ClientTagIndexer>::Set ClientTagIndex;
/external/clang/bindings/python/clang/
H A Dcindex.py27 Index
561 # to hang a description and name, (c) easy to keep in sync with Index.h.
1462 raise IndexError("Index greater than container length: "
1806 class Index(ClangObject): class in inherits:ClangObject
1808 The Index type provides the primary interface to the Clang CIndex library,
1816 Create a new Index.
1820 return Index(conf.lib.clang_createIndex(excludeDecls, 0))
1902 index is an Index instance to utilize. If not provided, a new Index
1929 index = Index
[all...]
/external/clang/include/clang/AST/
H A DComment.h747 void setParamIndex(unsigned Index) { argument
748 ParamIndex = Index;
H A DExprObjC.h173 Expr *getElement(unsigned Index) { argument
174 assert((Index < NumElements) && "Arg access out of range!");
175 return cast<Expr>(getElements()[Index]);
177 const Expr *getElement(unsigned Index) const {
178 assert((Index < NumElements) && "Arg access out of range!");
179 return cast<Expr>(getElements()[Index]);
300 ObjCDictionaryElement getKeyValueElement(unsigned Index) const {
301 assert((Index < NumElements) && "Arg access out of range!");
302 const KeyValuePair &KV = getKeyValues()[Index];
306 const ExpansionData &Expansion = getExpansionData()[Index];
[all...]
/external/clang/include/clang/Basic/
H A DSourceManager.h1359 const SrcMgr::SLocEntry &getLocalSLocEntry(unsigned Index, argument
1361 assert(Index < LocalSLocEntryTable.size() && "Invalid index");
1362 return LocalSLocEntryTable[Index];
1369 const SrcMgr::SLocEntry &getLoadedSLocEntry(unsigned Index,
1371 assert(Index < LoadedSLocEntryTable.size() && "Invalid index");
1372 if (SLocEntryLoaded[Index])
1373 return LoadedSLocEntryTable[Index];
1374 return loadSLocEntry(Index, Invalid);
1486 const SrcMgr::SLocEntry &loadSLocEntry(unsigned Index, bool *Invalid) const;
/external/clang/include/clang/Sema/
H A DInitialization.h124 unsigned Index; member in union:clang::InitializedEntity::__anon3391
159 InitializedEntity(ASTContext &Context, unsigned Index,
266 unsigned Index,
268 return InitializedEntity(Context, Index, Parent);
344 void setElementIndex(unsigned Index) { argument
347 this->Index = Index;
265 InitializeElement(ASTContext &Context, unsigned Index, const InitializedEntity &Parent) argument
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h978 NonLoc Index; member in class:clang::ento::ElementRegion
982 ElementType(elementType), Index(Idx) {
993 NonLoc getIndex() const { return Index; }
/external/clang/lib/AST/
H A DASTDiagnostic.cpp639 /// Index - the index of the template argument in TST.
640 unsigned Index; member in struct:__anon3470::TemplateDiff::TSTiterator
652 : TST(TST), Index(0), CurrentTA(0), EndTA(0) {
673 return Index == TST->getNumArgs();
690 if (++Index == TST->getNumArgs()) break;
693 TemplateArgument TA = TST->getArg(Index);
708 assert(!isEnd() && "Index exceeds number of arguments.");
710 return TST->getArg(Index);
H A DExprCXX.cpp932 unsigned Index = Iter - capture_init_begin(); local
933 assert(Index < getLambdaClass()->getLambdaData().NumCaptures &&
937 return ArrayRef<VarDecl *>(IndexVars + IndexStarts[Index],
938 IndexVars + IndexStarts[Index + 1]);
H A DVTableBuilder.cpp1847 uint64_t Index = I->second; local
1849 AddressPointsByIndex.insert(std::make_pair(Index, Base));
1853 uint64_t Index = I; local
1977 uint64_t NextIndex = Index + 1;
/external/llvm/include/llvm/MC/
H A DMCAssembler.h571 /// Index - Index field, for use by the object file implementation.
572 uint64_t Index; member in class:llvm::MCSymbolData
646 uint64_t getIndex() const { return Index; }
649 void setIndex(uint64_t Value) { Index = Value; }
/external/llvm/include/llvm/Object/
H A DMachOFormat.h306 uint32_t Index; member in struct:llvm::object::macho::IndirectSymbolTableEntry
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2077 uint64_t Index = Record[OpNum]; local
2078 if ((unsigned)Index != Index)
2080 EXTRACTVALIdx.push_back((unsigned)Index);
2101 uint64_t Index = Record[OpNum]; local
2102 if ((unsigned)Index != Index)
2104 INSERTVALIdx.push_back((unsigned)Index);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2122 unsigned Index, SDValue N,
2126 switch (Table[Index++]) {
2129 return Index-1; // Could not evaluate this predicate.
2131 Result = !::CheckSame(Table, Index, N, RecordedNodes);
2132 return Index;
2134 Result = !::CheckPatternPredicate(Table, Index, SDISel);
2135 return Index;
2137 Result = !::CheckNodePredicate(Table, Index, SDISel, N.getNode());
2138 return Index;
2140 Result = !::CheckOpcode(Table, Index,
2121 IsPredicateKnownToFail(const unsigned char *Table, unsigned Index, SDValue N, bool &Result, const SelectionDAGISel &SDISel, SmallVectorImpl<std::pair<SDValue, SDNode*> > &RecordedNodes) argument
[all...]

Completed in 508 milliseconds

12345678