Searched defs:Index (Results 51 - 75 of 181) sorted by relevance

12345678

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeWizard.cs215 public IDictionary<int, IList> Index(object t) { method in class:Antlr.Runtime.Tree.TreeWizard
H A DBufferedTreeNodeStream.cs348 int i = Index;
392 lastMarker = Index;
400 public virtual int Index { property in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBufferedTokenStream.cs101 public virtual int Index property in class:Antlr.Runtime.BufferedTokenStream
170 _lastMarker = Index;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBufferedTreeNodeStream.cs412 int i = Index;
464 lastMarker = Index;
473 public virtual int Index property in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
H A DTreeWizard.cs242 public IDictionary<int, IList> Index( object t ) method in class:Antlr.Runtime.Tree.TreeWizard
/external/clang/include/clang/Sema/
H A DDesignator.h51 Expr *Index; member in struct:clang::Designator::ArrayDesignatorInfo
91 return ArrayInfo.Index;
136 static Designator getArray(Expr *Index, argument
140 D.ArrayInfo.Index = Index;
/external/clang/test/CodeGenCXX/
H A Dtemp-order.cpp13 unsigned Product, Index; member in struct:TempTracker
15 TempTracker() : Product(1), Index(0) {}
30 TT.Product *= pow(P, ++TT.Index);
/external/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp77 unsigned Index; member in struct:__anon4870::GroupInfo
252 I->second.Index = index++;
265 OS << "static const short CheckerArray" << I->second.Index << "[] = { ";
280 OS << "static const short SubPackageArray" << I->second.Index << "[] = { ";
289 OS << recordGroupMap[I->second]->Index << ", ";
307 OS << "CheckerArray" << I->second.Index << ", ";
313 OS << "SubPackageArray" << I->second.Index << ", ";
H A DClangDiagnosticsEmitter.cpp626 std::vector<RecordIndexElement> Index; local
627 Index.reserve(Diags.size());
630 Index.push_back(RecordIndexElement(R));
633 std::sort(Index.begin(), Index.end(), RecordIndexElementSorter());
635 for (unsigned i = 0, e = Index.size(); i != e; ++i) {
636 const RecordIndexElement &R = Index[i];
/external/llvm/include/llvm/
H A DAttributes.h278 unsigned Index; ///< Index of the parameter for which the attributes apply. member in struct:llvm::AttributeWithIndex
279 ///< Index 0 is used for return value attributes.
280 ///< Index ~0U is used for function attributes.
284 P.Index = Idx;
/external/llvm/include/llvm/CodeGen/
H A DMachineRelocation.h62 unsigned Index; // Constant pool / jump table index member in union:llvm::MachineRelocation::__anon8450
63 unsigned GOTIndex; // Index in the GOT of this symbol/global
171 Result.Target.Index = CPI;
190 Result.Target.Index = JTI;
302 return Target.Index;
309 return Target.Index;
/external/llvm/include/llvm/MC/
H A DMCELFObjectWriter.h32 int Index; member in struct:llvm::ELFRelocationEntry
39 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0), Fixup(0) {}
43 : r_offset(RelocOffset), Index(Idx), Type(RelType), Symbol(Sym),
/external/llvm/lib/Object/
H A DMachOObject.cpp143 MachOObject::getLoadCommandInfo(unsigned Index) const {
144 assert(Index < getHeader().NumLoadCommands && "Invalid index!");
147 if (Index >= NumLoadedCommands) {
149 if (Index == 0) {
152 const LoadCommandInfo &Prev = getLoadCommandInfo(Index - 1);
156 LoadCommandInfo &Info = LoadCommands[Index];
164 NumLoadedCommands = Index + 1;
167 return LoadCommands[Index];
262 SwapValue(Value.Index);
266 unsigned Index,
265 ReadIndirectSymbolTableEntry(const macho::DysymtabLoadCommand &DLC, unsigned Index, InMemoryStruct<macho::IndirectSymbolTableEntry> &Res) const argument
286 ReadSection(const LoadCommandInfo &LCI, unsigned Index, InMemoryStruct<macho::Section> &Res) const argument
309 ReadSection64(const LoadCommandInfo &LCI, unsigned Index, InMemoryStruct<macho::Section64> &Res) const argument
324 ReadRelocationEntry(uint64_t RelocationTableOffset, unsigned Index, InMemoryStruct<macho::RelocationEntry> &Res) const argument
338 ReadSymbolTableEntry(uint64_t SymbolTableOffset, unsigned Index, InMemoryStruct<macho::SymbolTableEntry> &Res) const argument
352 ReadSymbol64TableEntry(uint64_t SymbolTableOffset, unsigned Index, InMemoryStruct<macho::Symbol64TableEntry> &Res) const argument
366 ReadDataInCodeTableEntry(uint64_t TableOffset, unsigned Index, InMemoryStruct<macho::DataInCodeTableEntry> &Res) const argument
374 ReadULEB128s(uint64_t Index, SmallVectorImpl<uint64_t> &Out) const argument
[all...]
/external/llvm/lib/Target/MBlaze/
H A DMBlazeMachineFunction.h164 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } argument
/external/llvm/lib/Target/PowerPC/
H A DPPCMachineFunctionInfo.h67 /// VarArgsNumGPR - Index of the first unused integer
70 /// VarArgsNumFPR - Index of the first unused double
118 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } argument
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp116 unsigned Index = 0; local
134 Index = 0;
182 Index = A_Base->getIndex();
186 Index = A_SD.getFragment()->getParent()->getOrdinal() + 1;
193 MRE.Word1 = ((Index << 0) |
201 Index = B_Base->getIndex();
205 Index = B_SD.getFragment()->getParent()->getOrdinal() + 1;
229 Index = Base->getIndex();
237 Index = SD.getFragment()->getParent()->getOrdinal() + 1;
330 MRE.Word1 = ((Index <<
421 unsigned Index = SD_A->getIndex(); local
492 unsigned Index = 0; local
[all...]
/external/llvm/lib/Target/X86/
H A DX86MachineFunctionInfo.h112 void setRAIndex(int Index) { ReturnAddrIndex = Index; } argument
/external/llvm/lib/VMCore/
H A DValue.cpp421 Value *Index = *I; local
426 ConstantInt *CI = dyn_cast<ConstantInt>(Index);
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp64 uint64_t Index; local
66 for (Index = 0; Index < Bytes.size(); Index += Size) {
70 S = DisAsm.getInstruction(Inst, Size, memoryObject, Index,
74 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second),
82 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second),
/external/llvm/tools/macho-dump/
H A Dmacho-dump.cpp69 static int DumpSectionData(MachOObject &Obj, unsigned Index, StringRef Name, argument
76 outs() << " # Section " << Index << "\n";
201 unsigned Index, uint32_t StringIndex,
204 outs() << " # Symbol " << Index << "\n";
306 << format("0x%x", ISTE->Index) << "),),\n";
365 static int DumpLoadCommand(MachOObject &Obj, unsigned Index) { argument
366 const MachOObject::LoadCommandInfo &LCI = Obj.getLoadCommandInfo(Index);
369 outs() << " # Load Command " << Index << "\n"
200 DumpSymbolTableEntryData(MachOObject &Obj, unsigned Index, uint32_t StringIndex, uint8_t Type, uint8_t SectionIndex, uint16_t Flags, uint64_t Value) argument
/external/clang/lib/Driver/
H A DArgList.cpp300 const char *ArgList::GetOrMakeJoinedArgString(unsigned Index, argument
303 StringRef Cur = getArgString(Index);
326 unsigned Index = ArgStrings.size(); local
332 return Index;
373 unsigned Index = BaseArgs.MakeIndex(Value); local
374 Arg *A = new Arg(Opt, Index, BaseArgs.getArgString(Index), BaseArg);
381 unsigned Index = BaseArgs.MakeIndex(Opt->getName(), Value); local
382 Arg *A = new Arg(Opt, Index, BaseArgs.getArgString(Index
389 unsigned Index = BaseArgs.MakeIndex(Opt->getName().str() + Value.str()); local
[all...]
H A DOptTable.cpp146 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index) const {
147 unsigned Prev = Index;
148 const char *Str = Args.getArgString(Index);
152 return new Arg(TheInputOption, Index++, Str);
177 if (Arg *A = getOption(Start - OptionInfos + 1)->accept(Args, Index))
181 if (Prev != Index)
185 return new Arg(TheUnknownOption, Index++, Str);
197 unsigned Index = 0, End = ArgEnd - ArgBegin; local
198 while (Index < End) {
200 if (Args->getArgString(Index)[
[all...]
/external/clang/lib/Lex/
H A DPreprocessingRecord.cpp334 PreprocessingRecord::getLoadedPreprocessedEntity(unsigned Index) { argument
335 assert(Index < LoadedPreprocessedEntities.size() &&
338 PreprocessedEntity *&Entity = LoadedPreprocessedEntities[Index];
340 Entity = ExternalSource->ReadPreprocessedEntity(Index);
/external/jdiff/src/jdiff/
H A DHTMLIndexes.java76 title = programElementType + " Removals Index";
79 title = programElementType + " Additions Index";
82 title = programElementType + " Changes Index";
85 title = programElementType + " Differences Index";
141 Index entry = (Index)(iter.next());
174 h_.writeText("<table summary=\"Index for " + indexName + "\" width=\"100%\" class=\"index\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
177 h_.writeText(" Filter the Index:");
245 packageNames = new ArrayList(); // Index[]
259 packageNames.add(new Index(pk
1008 class Index implements Comparable { class in inherits:Comparable
1039 public Index(String name, int changeType) { method in class:Index
1046 public Index(String name, int changeType, String pkgName, boolean isInterface) { method in class:Index
1055 public Index(String name, int changeType, String pkgName, String type) { method in class:Index
1064 public Index(String name, int changeType, String pkgName, method in class:Index
1080 public Index(String name, int changeType, String pkgName, method in class:Index
[all...]
/external/libnfc-nxp/src/
H A DphLibNfc_ndef_raw.c1256 Index = 0; local
1322 for (Index =0 ;Index < (pScrtKey->length); Index++ )
1324 mif_std_key[Index] = *(pScrtKey->buffer++);
1357 Index = 0; local
1424 for (Index =0 ;Index < (pScrtKey->length); Index++ )
1426 mif_std_key[Index]
1678 uint32_t Index=0; local
1887 uint32_t Index=0; local
[all...]

Completed in 281 milliseconds

12345678