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

1 2 34 5 6 7 8 910

  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiffWithMockFiles.pl 32 index 0000000..756e864
40 index 756e864..04d2ae1 100644
47 Index: Makefile
48 index 756e864..04d2ae1 100644
55 Index: Makefile
57 index 0000000..756e864
64 Index: Makefile
72 Index: Makefile
parseSvnProperty.pl 187 Index: Makefile.shared
196 expectedNextLine => "Index: Makefile.shared\n",
205 Index: Makefile.shared
215 expectedNextLine => "Index: Makefile.shared\r\n",
263 Index: Makefile.shared
272 expectedNextLine => "Index: Makefile.shared\n",
283 Index: Makefile.shared
293 expectedNextLine => "Index: Makefile.shared\r\n",
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.h 207 // Return the address of the @Index entry in the constant pool that was
209 virtual uintptr_t getConstantPoolEntryAddress(unsigned Index) const {
210 bccAssert(Index < mpConstantPool->getConstants().size() &&
211 "Invalid constant pool index!");
212 return mConstPoolAddresses[Index];
215 // Return the address of the jump table with index @Index in the function
217 virtual uintptr_t getJumpTableEntryAddress(unsigned Index) const;
  /external/clang/include/clang/Sema/
Initialization.h 118 /// EK_ComplexElement, the index of the array or vector element being
120 unsigned Index;
147 InitializedEntity(ASTContext &Context, unsigned Index,
244 unsigned Index,
246 return InitializedEntity(Context, Index, Parent);
314 /// element, sets the element index.
315 void setElementIndex(unsigned Index) {
318 this->Index = Index;
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 335 // Diagnostic name index generation
364 std::vector<RecordIndexElement> Index;
365 Index.reserve(Diags.size());
368 Index.push_back(RecordIndexElement(R));
371 std::sort(Index.begin(), Index.end(), RecordIndexElementSorter());
373 for (unsigned i = 0, e = Index.size(); i != e; ++i) {
374 const RecordIndexElement &R = Index[i];
ClangSACheckersEmitter.cpp 77 unsigned Index;
206 // Group index
234 // Group index
248 unsigned index = 0; local
251 I->second.Index = index++;
264 OS << "static const short CheckerArray" << I->second.Index << "[] = { ";
279 OS << "static const short SubPackageArray" << I->second.Index << "[] = { ";
288 OS << recordGroupMap[I->second]->Index << ", ";
306 OS << "CheckerArray" << I->second.Index << ", ";
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 153 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ?
160 String16(*SymtabF, Index); // st_shndx
169 String16(*SymtabF, Index); // st_shndx
281 // The string table must be emitted first because we need the index
401 int Index = 0;
428 Index = F->getParent()->getOrdinal() + 1;
437 Index = -1;
462 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
529 unsigned Index = 1;
536 SectionIndexMap[&Section] = Index++
    [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 247 SDValue &Index);
251 SDValue &Index);
263 SDValue &Index);
315 \arg Index The base address index
319 SDValue &Index) {
329 Index = Zero;
352 Index = Zero;
360 Index = Zero;
385 \arg Index Base address inde
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_index.cc 20 // represents a set of terms (as an interator into the Index) matching the
24 std::list<Index::const_iterator> terms;
161 Index::const_iterator i = index_.lower_bound(term);
179 // index adding all entries that start with term to matches.
189 // Prefix match and not the first term. Loop through index combining
203 void BookmarkIndex::CombineMatchesInPlace(const Index::const_iterator& index_i,
221 void BookmarkIndex::CombineMatches(const Index::const_iterator& index_i,
262 Index::iterator i = index_.find(term);
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 266 virtual PreprocessedEntity *ReadPreprocessedEntity(unsigned Index) = 0;
307 PPEntityID getPPEntityID(unsigned Index, bool isLoaded) const {
308 return isLoaded ? PPEntityID(Index) - LoadedPreprocessedEntities.size()
309 : Index;
321 /// \brief Retrieve the loaded preprocessed entity at the given index.
322 PreprocessedEntity *getLoadedPreprocessedEntity(unsigned Index);
339 /// \returns The index into the set of loaded preprocessed entities, which
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 89 SDValue &Index);
130 SDValue &Base, SDValue &Disp, SDValue &Index);
132 SDValue &Base, SDValue &Disp, SDValue &Index);
134 SDValue &Base, SDValue &Disp, SDValue &Index);
139 SDValue &Base, SDValue &Disp, SDValue &Index);
219 // the index field with the index field unused, use -B as the index.
223 // it costs an additional mov if the index register has other uses.
231 // Test if the index field is free for use
    [all...]
  /external/libvpx/vp8/common/x86/
boolcoder.cxx 37 assert( ebits + mbits < sizeof(Index) * 8);
60 cdouble p = ( *this)( (Index) i);
153 return (Index) ( (e << mbits) + (m & mmask));
177 return (Index) i;
180 double bool_coder_spec::operator()( Index i) const {
184 return 1. - ( *this)( (Index) (max_index - i));
  /external/llvm/include/llvm/
Attributes.h 163 /// with an index.
166 unsigned Index; ///< Index of the parameter for which the attributes apply.
167 ///< Index 0 is used for return value attributes.
168 ///< Index ~0U is used for function attributes.
172 P.Index = Idx;
211 /// addAttr - Add the specified attribute at the specified index to this
216 /// removeAttr - Remove the specified attribute at the specified index from
224 /// getParamAttributes - The attributes for the specified index are
227 assert (Idx && Idx != ~0U && "Invalid parameter index!");
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineCodeEmitter.h 304 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
307 virtual uintptr_t getConstantPoolEntryAddress(unsigned Index) const = 0;
309 /// getJumpTableEntryAddress - Return the address of the jump table with index
310 /// 'Index' in the function that last called initJumpTableInfo.
312 virtual uintptr_t getJumpTableEntryAddress(unsigned Index) const = 0;
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 231 unsigned Index = 0;
236 Result[Index] = *I;
244 Result[Index] = JustLoad;
246 ++Index;
263 unsigned Index = 0;
268 Result[Index] = *I;
276 Result[Index] = JustStore;
278 ++Index;
436 /// index with a negative value.
441 // The alignment of the frame index can be determined from its offset fro
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.cpp 83 int TGLexer::peekNextChar(int Index) {
84 return *(CurPtr + Index);
TGLexer.h 73 /// CurBuffer - This is the current buffer index we're lexing from as managed
113 int peekNextChar(int Index);
  /external/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.h 230 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 143 unsigned index = 0; local
146 output[index] = hex_rep[(*i & 0xF0) >> 4];
147 output[index + 1] = hex_rep[*i & 0xF];
148 index += 3;
258 uint64_t Index;
287 for (Index = Start; Index < End; Index += Size) {
290 if (DisAsm->getInstruction(Inst, Size, memoryObject, Index,
292 outs() << format("%8x:\t", SectionAddr + Index);
    [all...]
  /external/clang/include/clang/Driver/
OptTable.h 72 /// The index of the first option which can be parsed (i.e., is not a
142 /// updating Index.
144 /// \param [in] [out] Index - The current parsing position in the argument
145 /// string list; on return this will be the index of the next argument
149 /// (in which case Index still points at the conceptual next argument string
151 Arg *ParseOneArg(const ArgList &Args, unsigned &Index) const;
164 /// \param MissingArgIndex - On error, the index of the option which could
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 49 // Compute field index.
51 // FIXME: The index here is closely tied to how ASTContext::getObjCLayout is
54 unsigned Index = 0;
60 ++Index;
62 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
64 return RL->getFieldOffset(Index);
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 231 /// \brief Retrieve the loaded preprocessed entity at the given index.
233 PreprocessingRecord::getLoadedPreprocessedEntity(unsigned Index) {
234 assert(Index < LoadedPreprocessedEntities.size() &&
237 PreprocessedEntity *&Entity = LoadedPreprocessedEntities[Index];
239 Entity = ExternalSource->ReadPreprocessedEntity(Index);
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachObjectWriter.cpp 326 unsigned Index = 0;
348 Index = SD->getIndex();
356 // The index is the section ordinal (1-based).
359 Index = SymSD.getOrdinal() + 1;
372 MRE.Word1 = ((Index << 0) |
  /external/clang/include/clang/Analysis/
AnalysisContext.h 270 // The index of the callsite in the CFGBlock.
271 unsigned Index;
278 Block(blk), Index(idx) {}
287 unsigned getIndex() const { return Index; }
  /external/clang/test/CodeGenCXX/
temp-order.cpp 13 unsigned Product, Index;
15 TempTracker() : Product(1), Index(0) {}
30 TT.Product *= pow(P, ++TT.Index);

Completed in 543 milliseconds

1 2 34 5 6 7 8 910