OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurAbbrevs
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Bitcode/
BitstreamWriter.h
45
///
CurAbbrevs
- Abbrevs installed at in this block.
46
std::vector<IntrusiveRefCntPtr<BitCodeAbbrev>>
CurAbbrevs
;
90
assert(BlockScope.empty() &&
CurAbbrevs
.empty() && "Block imbalance");
223
BlockScope.back().PrevAbbrevs.swap(
CurAbbrevs
);
228
CurAbbrevs
.insert(
CurAbbrevs
.end(), Info->Abbrevs.begin(),
251
CurAbbrevs
= std::move(B.PrevAbbrevs);
306
assert(AbbrevNo <
CurAbbrevs
.size() && "Invalid abbrev #!");
307
const BitCodeAbbrev *Abbv =
CurAbbrevs
[AbbrevNo].get();
494
CurAbbrevs
.push_back(Abbv)
[
all
...]
BitstreamReader.h
188
std::vector<IntrusiveRefCntPtr<BitCodeAbbrev>>
CurAbbrevs
;
486
CurAbbrevs
= std::move(BlockScope.back().PrevAbbrevs);
498
if (AbbrevNo >=
CurAbbrevs
.size())
500
return
CurAbbrevs
[AbbrevNo].get();
/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(),
291
CurAbbrevs
.push_back(Abbv);
324
// ReadAbbrevRecord installs the abbrev in
CurAbbrevs
. Move it to the
326
CurBlockInfo->Abbrevs.push_back(std::move(
CurAbbrevs
.back()));
327
CurAbbrevs
.pop_back();
Completed in 48 milliseconds