HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 26 - 50 of 247) sorted by null

12 3 4 5 6 7 8 910

  /external/llvm/include/llvm/CodeGen/
ObjectCodeEmitter.h 45 /// start of the section for that constant pool index.
49 /// containing the constant pool entry for that index.
53 /// start of the section for that jump table index.
144 /// getJumpTableEntryAddress - Return the address of the jump table with index
145 /// 'Index' in the function that last called initJumpTableInfo.
146 virtual uintptr_t getJumpTableEntryAddress(unsigned Index) const;
153 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
155 virtual uintptr_t getConstantPoolEntryAddress(unsigned Index) const;
157 /// getConstantPoolEntrySection - Return the section of the 'Index' entry in
159 virtual uintptr_t getConstantPoolEntrySection(unsigned Index) const
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiffHeader.pl 55 Index: index_path.py
65 Index: index_path.py
91 Index: foo.exe
parsePatch.pl 43 Index: Makefile
49 Index: Makefile_new
60 Index: Makefile
parseGitDiffHeader.pl 39 index f5d5e74..3b6aa92 100644
49 Index: foo.h
50 index f5d5e74..3b6aa92 100644
64 index 0000000..3c9f114
73 Index: foo.h
75 index 0000000..3c9f114
90 index 1e50d1d..0000000
96 index d45dd40..3494526 100644
101 Index: foo
103 index 1e50d1d..000000
    [all...]
runPatchCommand.pl 39 # Since $patch has no "Index:" path, passing this to runPatchCommand
59 Index: $fileToPatch
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 52 unsigned Index = Storage.size();
54 if (Index == 0) return;
58 unsigned Target = (Index + 1) / 2 - 1;
59 if (!Precedes(data[Index], data[Target])) return;
60 std::swap(data[Index], data[Target]);
62 Index = Target;
80 unsigned Index = 0;
82 // With a 1-based index, the children would be Index*2 and Index*2+1
    [all...]
  /external/clang/include/clang/Driver/
Option.h 159 /// Index to the position where argument parsing should resume
161 virtual Arg *accept(const ArgList &Args, unsigned &Index) const = 0;
174 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
189 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
202 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
217 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
230 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
243 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
256 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
277 virtual Arg *accept(const ArgList &Args, unsigned &Index) const
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_translation_unit.py 8 index = Index.create()
9 tu = index.parse(path)
14 index = Index.create()
15 tu = index.parse(path)
22 index = Index.create()
23 tu = index.parse(path, ['-DDECL_ONE=hello', '-DDECL_TWO=hi'])
30 index = Index.create(
    [all...]
test_diagnostics.py 4 index = Index.create()
5 tu = index.parse('INPUT.c', unsaved_files = [('INPUT.c', source)])
21 index = Index.create()
34 index = Index.create()
49 index = Index.create()
test_cursor.py 1 from clang.cindex import Index, CursorKind, TypeKind
27 index = Index.create()
28 tu = index.parse('t.c', unsaved_files = [('t.c',kInput)])
test_location.py 1 from clang.cindex import Index
11 index = Index.create()
12 tu = index.parse('t.c', unsaved_files = [('t.c',baseInput)])
21 tu = index.parse('t.c', unsaved_files = [('t.c',"\n"+baseInput)])
30 tu = index.parse('t.c', unsaved_files = [('t.c'," "+baseInput)])
39 index = Index.create()
40 tu = index.parse('t.c', unsaved_files = [('t.c',baseInput)])
  /external/clang/lib/Basic/
TargetInfo.cpp 371 unsigned &Index) const {
385 for (Index = 0; Index != NumOutputs; ++Index)
386 if (SymbolicName == OutputConstraints[Index].getName())
428 unsigned Index = 0;
429 if (!resolveSymbolicName(Name, OutputConstraints, NumOutputs, Index))
434 if (Info.hasTiedOperand() && Info.getTiedOperand() != Index)
437 Info.setTiedOperand(Index, OutputConstraints[Index]);
    [all...]
  /external/clang/lib/Driver/
ArgList.cpp 218 const char *ArgList::GetOrMakeJoinedArgString(unsigned Index,
221 StringRef Cur = getArgString(Index);
244 unsigned Index = ArgStrings.size();
250 return Index;
291 unsigned Index = BaseArgs.MakeIndex(Value);
292 Arg *A = new Arg(Opt, Index, BaseArgs.getArgString(Index), BaseArg);
299 unsigned Index = BaseArgs.MakeIndex(Opt->getName(), Value);
300 Arg *A = new Arg(Opt, Index, BaseArgs.getArgString(Index + 1), BaseArg)
    [all...]
OptTable.cpp 188 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index) const {
189 unsigned Prev = Index;
190 const char *Str = Args.getArgString(Index);
194 return new Arg(TheInputOption, Index++, Str);
219 if (Arg *A = getOption(Start - OptionInfos + 1)->accept(Args, Index))
223 if (Prev != Index)
227 return new Arg(TheUnknownOption, Index++, Str);
239 unsigned Index = 0, End = ArgEnd - ArgBegin;
240 while (Index < End) {
242 if (Args->getArgString(Index)[0] == '\0')
    [all...]
  /external/clang/include/clang/Sema/
Template.h 64 /// \brief Retrieve the template argument at a given depth and index.
65 const TemplateArgument &operator()(unsigned Depth, unsigned Index) const {
67 assert(Index < TemplateArgumentLists[getNumLevels() - Depth - 1].second);
68 return TemplateArgumentLists[getNumLevels() - Depth - 1].first[Index];
72 /// given depth and index.
75 bool hasTemplateArgument(unsigned Depth, unsigned Index) const {
78 if (Index >= TemplateArgumentLists[getNumLevels() - Depth - 1].second)
81 return !(*this)(Depth, Index).isNull();
85 void setArgument(unsigned Depth, unsigned Index,
88 assert(Index < TemplateArgumentLists[getNumLevels() - Depth - 1].second)
    [all...]
Designator.h 51 Expr *Index;
91 return ArrayInfo.Index;
136 static Designator getArray(Expr *Index,
140 D.ArrayInfo.Index = Index;
182 /// InitIndex - The index of the initializer expression this is for. For
  /external/jdiff/src/jdiff/
HTMLIndexes.java 23 /** Emit all the bottom left frame index files. */
35 // are any removals etc for the allDiffs index.
59 * the given program element type in an alphabetical index.
61 * @param indexBaseName The base name of the index file.
76 title = programElementType + " Removals Index";
79 title = programElementType + " Additions Index";
82 title = programElementType + " Changes Index";
85 title = programElementType + " Differences Index";
125 * with a link to the top of the index.
141 Index entry = (Index)(iter.next())
    [all...]
  /external/clang/
Android.mk 15 lib/Index \
  /external/clang/include/clang/Serialization/
ModuleManager.h 77 /// \brief Returns the module associated with the given index
78 Module &operator[](unsigned Index) const { return *Chain[Index]; }
  /external/llvm/include/llvm/ADT/
IndexedMap.h 1 //===- llvm/ADT/IndexedMap.h - An index map implementation ------*- C++ -*-===//
10 // This file implements an indexed map. The index map template takes two
30 unsigned operator()(unsigned Index) const {
31 return Index;
49 assert(toIndex_(n) < storage_.size() && "index out of bounds!");
54 assert(toIndex_(n) < storage_.size() && "index out of bounds!");
  /external/llvm/lib/Target/Mips/
MipsMachineFunction.h 50 int GPFI; // Index of the frame object for restoring $gp
51 mutable int DynAllocFI; // Frame index of dynamically allocated stack area.
99 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
  /external/llvm/lib/Target/PowerPC/
PPCMachineFunctionInfo.h 25 /// FramePointerSaveIndex - Frame index of where the old frame pointer is
30 /// ReturnAddrSaveIndex - Frame index of where the return address is stored.
66 /// VarArgsNumGPR - Index of the first unused integer
69 /// VarArgsNumFPR - Index of the first unused double
117 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
  /external/llvm/lib/Target/X86/
X86MachineFunctionInfo.h 106 void setRAIndex(int Index) { ReturnAddrIndex = Index; }
  /external/llvm/lib/VMCore/
Attributes.cpp 156 ID.AddInteger(uint64_t(Attr[i].Attrs) << 32 | unsigned(Attr[i].Index));
176 assert((!i || Attrs[i-1].Index < Attrs[i].Index) &&
243 /// getAttributes - The attributes for the specified index are
250 for (unsigned i = 0, e = Attrs.size(); i != e && Attrs[i].Index <= Idx; ++i)
251 if (Attrs[i].Index == Idx)
291 for (; i != e && OldAttrList[i].Index < Idx; ++i)
294 // If there are attributes already at this index, merge them in.
295 if (i != e && OldAttrList[i].Index == Idx) {
328 for (; i != e && OldAttrList[i].Index < Idx; ++i
    [all...]
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 64 uint64_t Index;
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),

Completed in 172 milliseconds

12 3 4 5 6 7 8 910