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

  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.h 28 const DWARFAbbreviationDeclarationSet *Abbrevs;
43 const DWARFAbbreviationDeclarationSet *abbrevs);
64 return Abbrevs;
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 41 /// CurAbbrevs - Abbrevs installed at in this block.
58 std::vector<BitCodeAbbrev*> Abbrevs;
74 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
76 Info.Abbrevs[i]->dropRef();
215 // If there is a blockinfo for this BlockID, add all the predefined abbrevs
218 for (unsigned i = 0, e = static_cast<unsigned>(Info->Abbrevs.size());
220 CurAbbrevs.push_back(Info->Abbrevs[i]);
221 Info->Abbrevs[i]->addRef();
229 // Delete all abbrevs.
524 Info.Abbrevs.push_back(Abbv)
    [all...]
BitstreamReader.h 33 std::vector<BitCodeAbbrev*> Abbrevs;
72 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
74 Info.Abbrevs[i]->dropRef();
139 /// CurAbbrevs - Abbrevs installed at in this block.
200 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
201 for (unsigned i = 0, e = static_cast<unsigned>(Abbrevs.size());
203 Abbrevs[i]->addRef();
208 // Free all the Abbrevs.
214 // Free all the Abbrevs in the block scope.
217 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs
    [all...]

Completed in 39 milliseconds