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

  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 20 CurAbbrevs.clear();
31 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
33 // Add the abbrevs specific to this block to the CurAbbrevs list.
36 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(),
271 CurAbbrevs.push_back(Abbv);
304 // ReadAbbrevRecord installs the abbrev in CurAbbrevs. Move it to the
306 CurBlockInfo->Abbrevs.push_back(std::move(CurAbbrevs.back()));
307 CurAbbrevs.pop_back();
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 42 /// CurAbbrevs - Abbrevs installed at in this block.
43 std::vector<IntrusiveRefCntPtr<BitCodeAbbrev>> CurAbbrevs;
101 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
219 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
224 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(),
247 CurAbbrevs = std::move(B.PrevAbbrevs);
300 assert(AbbrevNo < CurAbbrevs.size() && "Invalid abbrev #!");
301 const BitCodeAbbrev *Abbv = CurAbbrevs[AbbrevNo].get();
476 CurAbbrevs.push_back(Abbv)
    [all...]
BitstreamReader.h 188 std::vector<IntrusiveRefCntPtr<BitCodeAbbrev>> CurAbbrevs;
482 CurAbbrevs = std::move(BlockScope.back().PrevAbbrevs);
494 if (AbbrevNo >= CurAbbrevs.size())
496 return CurAbbrevs[AbbrevNo].get();

Completed in 50 milliseconds