Searched refs:Index (Results 1 - 25 of 217) sorted by relevance

123456789

/external/llvm/lib/Target/PTX/
H A DPTXRegisterInfo.cpp37 unsigned Index; local
47 Index = 0;
48 while (!MI.getOperand(Index).isFI()) {
49 ++Index;
50 assert(Index < MI.getNumOperands() &&
54 int FrameIndex = MI.getOperand(Index).getIndex();
71 //MI.getOperand(Index).ChangeToRegister(Reg, false);
72 MI.getOperand(Index).ChangeToImmediate(FrameIndex);
73 //MI.getOperand(Index) = ESOp;
H A DPTXParamManager.cpp33 unsigned Index = AllParams.size(); local
34 AllParams[Index] = Param;
35 ArgumentParams.push_back(Index);
37 return Index;
50 unsigned Index = AllParams.size(); local
51 AllParams[Index] = Param;
52 ReturnParams.push_back(Index);
54 return Index;
67 unsigned Index = AllParams.size(); local
68 AllParams[Index]
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_index.py7 index = Index.create()
9 # FIXME: test Index.read
12 index = Index.create()
13 assert isinstance(index, Index)
H A Dtest_translation_unit.py8 index = Index.create()
14 index = Index.create()
22 index = Index.create()
30 index = Index.create()
38 index = Index.create()
55 index = Index.create()
81 index = Index.create()
/external/clang/lib/Driver/
H A DOption.cpp117 Arg *OptionGroup::accept(const ArgList &Args, unsigned &Index) const {
125 Arg *InputOption::accept(const ArgList &Args, unsigned &Index) const {
133 Arg *UnknownOption::accept(const ArgList &Args, unsigned &Index) const {
142 Arg *FlagOption::accept(const ArgList &Args, unsigned &Index) const {
145 if (getName().size() != strlen(Args.getArgString(Index)))
148 return new Arg(getUnaliasedOption(), Index++);
156 Arg *JoinedOption::accept(const ArgList &Args, unsigned &Index) const {
158 const char *Value = Args.getArgString(Index) + getName().size();
159 return new Arg(getUnaliasedOption(), Index++, Value);
169 unsigned &Index) cons
[all...]
/external/llvm/lib/Target/CellSPU/
H A DSPUMachineFunction.h42 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } argument
/external/llvm/lib/Target/MSP430/
H A DMSP430MachineFunctionInfo.h41 void setRAIndex(int Index) { ReturnAddrIndex = Index; } argument
/external/clang/lib/AST/
H A DSelectorLocationsKind.cpp20 static SourceLocation getStandardSelLoc(unsigned Index, argument
27 assert(Index == 0);
35 assert(Index < NumSelArgs);
38 IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Index);
65 SourceLocation getArgLoc(unsigned Index, ArrayRef<T*> Args) { argument
66 return Index < Args.size() ? getArgLoc(Args[Index]) : SourceLocation();
104 SourceLocation clang::getStandardSelectorLoc(unsigned Index, argument
109 return getStandardSelLoc(Index, Sel, WithArgSpace,
110 getArgLoc(Index, Arg
121 getStandardSelectorLoc(unsigned Index, Selector Sel, bool WithArgSpace, ArrayRef<ParmVarDecl *> Args, SourceLocation EndLoc) argument
[all...]
/external/llvm/lib/CodeGen/
H A DObjectCodeEmitter.cpp120 /// 'Index' in the function that last called initJumpTableInfo.
121 uintptr_t ObjectCodeEmitter::getJumpTableEntryAddress(unsigned Index) const {
122 assert(JTLocations.size() > Index && "JT not emitted!");
123 return JTLocations[Index];
126 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
128 uintptr_t ObjectCodeEmitter::getConstantPoolEntryAddress(unsigned Index) const {
129 assert(CPLocations.size() > Index && "CP not emitted!");
130 return CPLocations[Index];
133 /// getConstantPoolEntrySection - Return the section of the 'Index' entry in
135 uintptr_t ObjectCodeEmitter::getConstantPoolEntrySection(unsigned Index) cons
[all...]
/external/clang/lib/Sema/
H A DTypeLocBuilder.h34 size_t Index; member in class:clang::TypeLocBuilder
46 : Buffer(InlineBuffer), Capacity(InlineCapacity), Index(InlineCapacity) {}
86 Index = Capacity;
110 size_t FullDataSize = Capacity - Index;
112 memcpy(DI->getTypeLoc().getOpaqueData(), &Buffer[Index], FullDataSize);
123 size_t FullDataSize = Capacity - Index;
125 memcpy(Mem, &Buffer[Index], FullDataSize);
139 if (LocalSize > Index) {
140 size_t RequiredCapacity = Capacity + (LocalSize - Index);
147 Index
[all...]
/external/llvm/include/llvm/Object/
H A DMachOObject.h117 StringRef getStringAtIndex(unsigned Index) const {
118 size_t End = getStringTableData().find('\0', Index);
119 return getStringTableData().slice(Index, End);
139 const LoadCommandInfo &getLoadCommandInfo(unsigned Index) const;
158 unsigned Index,
162 unsigned Index,
166 unsigned Index,
169 uint64_t RelocationTableOffset, unsigned Index,
172 uint64_t SymbolTableOffset, unsigned Index,
175 uint64_t SymbolTableOffset, unsigned Index,
[all...]
/external/llvm/tools/llvm-objdump/
H A DMCFunction.cpp48 uint64_t Index = WorkList.pop_back_val(); local
49 if (VisitedInsts.find(Index) != VisitedInsts.end())
52 for (;Index < End; Index += Size) {
53 VisitedInsts.insert(Index);
56 if (DisAsm->getInstruction(Inst, Size, Region, Index, DebugOut, nulls())){
57 Instructions.push_back(MCDecodedInst(Index, Size, Inst));
59 uint64_t targ = Ana->evaluateBranch(Inst, Index, Size);
60 if (targ != -1ULL && targ == Index+Size)
68 WorkList.push_back(Index
[all...]
/external/llvm/lib/Analysis/
H A DLoopPass.cpp156 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
157 LoopPass *LP = getContainedPass(Index);
171 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
172 LoopPass *LP = getContainedPass(Index);
214 for (unsigned Index = 0; Index < getNumContainedPasse
[all...]
H A DRegionPass.cpp69 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
70 RegionPass *RP = (RegionPass *)getContainedPass(Index);
83 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
84 RegionPass *P = (RegionPass*)getContainedPass(Index);
136 for (unsigned Index = 0; Index < getNumContainedPasse
[all...]
/external/clang/include/clang/Driver/
H A DArg.h44 unsigned Index; member in class:clang::driver::Arg
57 Arg(const Option *Opt, unsigned Index, const Arg *BaseArg = 0);
58 Arg(const Option *Opt, unsigned Index,
60 Arg(const Option *Opt, unsigned Index,
65 unsigned getIndex() const { return Index; }
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparsePatch.pl43 Index: Makefile label
49 Index: Makefile_new label
60 Index: Makefile label
H A DparseSvnDiffHeader.pl45 Index: WebKitTools/Scripts/VCSUtils.pm label
55 Index: WebKitTools/Scripts/VCSUtils.pm label
70 Index: WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl label
80 Index: WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl label
95 Index: index_path.py label
105 Index: index_path.py label
121 Index: index_path.py\r label
131 Index: index_path.py\r label
146 Index: index_path.py label
156 Index label
175 Index: test_file.swf label
191 Index: test_file.swf label
[all...]
H A DparseDiff.pl39 Index: Makefile label
52 Index: Makefile label
73 Index: test_file.swf label
89 Index: test_file.swf label
109 Index: test_file.swf label
126 Index: test_file.swf label
150 Index: Makefile label
166 Index: Makefile label
187 Index: Makefile_new label
207 Index label
213 Index: Makefile_new label
220 Index: Makefile label
238 Index: Makefile label
253 Index: Makefile label
279 Index: Makefile label
297 Index: Makefile label
320 Index: Makefile label
338 Index: Makefile label
365 Index: Makefile.shared label
392 Index: Makefile.shared label
415 Index: NMakefile label
493 Index: test_file.swf label
511 Index: test_file.swf label
532 Index: test_file.swf label
551 Index: test_file.swf label
573 Index: test_file.swf label
594 Index: test_file.swf label
615 Index: test_file.swf label
637 Index: test_file.swf label
659 Index: test_file.swf label
672 Index: Makefile label
685 Index: test_file.swf label
706 Index: test_file.swf label
719 Index: Makefile label
733 Index: test_file.swf label
758 Index: Makefile label
782 Index: Makefile label
807 Index: Makefile label
832 Index: Makefile label
858 Index: Makefile label
873 Index: Makefile.shared label
885 Index: Makefile label
909 Index: Makefile label
924 Index: Makefile.shared label
937 Index: Makefile label
974 Index: Makefile label
1002 Index: foo.h label
1033 Index: foo label
1057 Index: Makefile_new label
1064 Index: Makefile label
1069 Index: Makefile_new label
1135 Index: foo_new label
1178 Index: foo_new label
[all...]
/external/clang/lib/
H A DMakefile13 FrontendTool Index Driver
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTest.cpp33 unsigned Index; member in struct:__anon7178::FunctionEmittedEvent
40 unsigned Index; member in struct:__anon7178::FunctionFreedEvent
104 EXPECT_EQ(0U, Listener.EmittedEvents[0].Index);
111 EXPECT_EQ(1U, Listener.EmittedEvents[1].Index);
118 EXPECT_EQ(2U, Listener.FreedEvents[0].Index);
121 EXPECT_EQ(3U, Listener.FreedEvents[1].Index);
157 EXPECT_EQ(0U, Listener1.EmittedEvents[0].Index);
164 EXPECT_EQ(1U, Listener1.FreedEvents[0].Index);
171 EXPECT_EQ(0U, Listener2.EmittedEvents[0].Index);
178 EXPECT_EQ(1U, Listener2.EmittedEvents[1].Index);
[all...]
/external/llvm/lib/Object/
H A DMachOObject.cpp142 MachOObject::getLoadCommandInfo(unsigned Index) const {
143 assert(Index < getHeader().NumLoadCommands && "Invalid index!");
146 if (Index >= NumLoadedCommands) {
148 if (Index == 0) {
151 const LoadCommandInfo &Prev = getLoadCommandInfo(Index - 1);
155 LoadCommandInfo &Info = LoadCommands[Index];
163 NumLoadedCommands = Index + 1;
166 return LoadCommands[Index];
261 SwapValue(Value.Index);
265 unsigned Index,
264 ReadIndirectSymbolTableEntry(const macho::DysymtabLoadCommand &DLC, unsigned Index, InMemoryStruct<macho::IndirectSymbolTableEntry> &Res) const argument
285 ReadSection(const LoadCommandInfo &LCI, unsigned Index, InMemoryStruct<macho::Section> &Res) const argument
308 ReadSection64(const LoadCommandInfo &LCI, unsigned Index, InMemoryStruct<macho::Section64> &Res) const argument
323 ReadRelocationEntry(uint64_t RelocationTableOffset, unsigned Index, InMemoryStruct<macho::RelocationEntry> &Res) const argument
337 ReadSymbolTableEntry(uint64_t SymbolTableOffset, unsigned Index, InMemoryStruct<macho::SymbolTableEntry> &Res) const argument
351 ReadSymbol64TableEntry(uint64_t SymbolTableOffset, unsigned Index, InMemoryStruct<macho::Symbol64TableEntry> &Res) const argument
360 ReadULEB128s(uint64_t Index, SmallVectorImpl<uint64_t> &Out) const argument
[all...]
/external/clang/bindings/python/examples/cindex/
H A Dcindex-includes.py19 from clang.cindex import Index namespace
32 index = Index.create()
/external/clang/include/clang/AST/
H A DSelectorLocationsKind.h57 SourceLocation getStandardSelectorLoc(unsigned Index,
75 SourceLocation getStandardSelectorLoc(unsigned Index,
/external/llvm/lib/Target/PTX/InstPrinter/
H A DPTXInstPrinter.cpp86 unsigned Index = 2; local
87 unsigned NumRets = MI->getOperand(Index++).getImm();
91 printOperand(MI, Index++, O);
94 printOperand(MI, Index++, O);
99 O << *(MI->getOperand(Index++).getExpr()) << ", (";
101 unsigned NumArgs = MI->getOperand(Index++).getImm();
103 printOperand(MI, Index++, O);
106 printOperand(MI, Index++, O);
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_index.h34 // Index) maps from a lower case string to the set (type NodeSet) of
56 typedef std::map<string16, NodeSet> Index; typedef in class:BookmarkIndex
104 void CombineMatchesInPlace(const Index::const_iterator& index_i,
116 void CombineMatches(const Index::const_iterator& index_i,
129 Index index_;

Completed in 398 milliseconds

123456789