HomeSort by relevance Sort by last modified time
    Searched defs:Abbrevs (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.h 28 const DWARFAbbreviationDeclarationSet *Abbrevs;
43 const DWARFAbbreviationDeclarationSet *abbrevs);
64 return Abbrevs;
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 29 llvm::DenseMap<unsigned, unsigned> Abbrevs;
34 assert(Abbrevs.find(recordID) == Abbrevs.end()
36 Abbrevs[recordID] = abbrevID;
40 assert(Abbrevs.find(recordID) != Abbrevs.end() &&
42 return Abbrevs[recordID];
171 AbbreviationMap Abbrevs;
292 Stream.EmitRecordWithBlob(Abbrevs.get(RECORD_FILENAME), Record, Name);
302 Stream.EmitRecordWithAbbrev(Abbrevs.get(RECORD_SOURCE_RANGE), Record)
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 42 /// CurAbbrevs - Abbrevs installed at in this block.
59 std::vector<BitCodeAbbrev*> Abbrevs;
107 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
109 Info.Abbrevs[i]->dropRef();
229 // If there is a blockinfo for this BlockID, add all the predefined abbrevs
232 for (unsigned i = 0, e = static_cast<unsigned>(Info->Abbrevs.size());
234 CurAbbrevs.push_back(Info->Abbrevs[i]);
235 Info->Abbrevs[i]->addRef();
243 // Delete all abbrevs.
537 Info.Abbrevs.push_back(Abbv)
    [all...]
BitstreamReader.h 36 std::vector<BitCodeAbbrev*> Abbrevs;
78 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
80 Info.Abbrevs[i]->dropRef();
142 /// CurAbbrevs - Abbrevs installed at in this block.
201 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
202 for (unsigned i = 0, e = static_cast<unsigned>(Abbrevs.size());
204 Abbrevs[i]->addRef();
209 // Free all the Abbrevs.
215 // Free all the Abbrevs in the block scope.
218 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs
    [all...]

Completed in 387 milliseconds