HomeSort by: relevance | last modified time | path
    Searched defs:IDs (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
PDBStringTable.h 56 FixedStreamArray<support::ulittle32_t> IDs;
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
Internals.h 33 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
34 bool hasDiagnostic(ArrayRef<unsigned> IDs, SourceRange range) const;
75 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
80 unsigned IDs[] = { ID1, ID2 };
81 return clearDiagnostic(IDs, range);
85 unsigned IDs[] = { ID1, ID2, ID3 };
86 return clearDiagnostic(IDs, range);
94 unsigned IDs[] = { ID1, ID2 };
95 return CapturedDiags.hasDiagnostic(IDs, range);
  /src/external/apache2/llvm/dist/llvm/tools/verify-uselistorder/
verify-uselistorder.cpp 82 DenseMap<const Value *, unsigned> IDs;
92 /// the value-ids in the bitcode writer.
102 unsigned lookup(const Value *V) const { return IDs.lookup(V); }
241 if (IDs.lookup(V))
250 IDs[V] = Values.size();
268 << ", user-id = " << M.IDs.lookup(U.getUser()) << ", user = ";
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instruction.h 338 unsigned IDs[] = {ID1, ID2};
339 return dropUnknownNonDebugMetadata(IDs);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 51 DenseMap<const Value *, std::pair<unsigned, bool>> IDs;
65 unsigned size() const { return IDs.size(); }
66 std::pair<unsigned, bool> &operator[](const Value *V) { return IDs[V]; }
69 return IDs.lookup(V);
74 unsigned ID = IDs.size() + 1;
75 IDs[V].first = ID;
97 // changes the map's size, and thus affects the other IDs.
108 // directly in predictValueUseListOrderImpl(), just assign IDs to
159 // by giving IDs in reverse order.
162 // initializers), their relative IDs only matter for determining order o
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
LegacyPassManager.cpp 584 const AnalysisUsage::VectorType &IDs = AnUsage->getRequiredTransitiveSet();
587 for (AnalysisID ID : IDs) {
AsmWriter.cpp 101 DenseMap<const Value *, std::pair<unsigned, bool>> IDs;
103 unsigned size() const { return IDs.size(); }
104 std::pair<unsigned, bool> &operator[](const Value *V) { return IDs[V]; }
107 return IDs.lookup(V);
112 unsigned ID = IDs.size() + 1;
113 IDs[V].first = ID;
139 // changes the map's size, and thus affects the other IDs.
764 /// TypeIdMap - The slot map for type ids used in the summary index.
1078 // The first block of slots are just the module ids, which start at 0 and are
1087 // Start numbering the GUIDs after the module ids
    [all...]

Completed in 57 milliseconds