OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Abbrevs
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp
35
std::vector<BitCodeAbbrev*> &
Abbrevs
= BlockScope[S].PrevAbbrevs;
36
for (size_t i = 0, e =
Abbrevs
.size(); i != e; ++i)
37
Abbrevs
[i]->addRef();
42
// Free all the
Abbrevs
.
47
// Free all the
Abbrevs
in the block scope.
49
std::vector<BitCodeAbbrev*> &
Abbrevs
= BlockScope[S].PrevAbbrevs;
50
for (size_t i = 0, e =
Abbrevs
.size(); i != e; ++i)
51
Abbrevs
[i]->dropRef();
63
// Add the
abbrevs
specific to this block to the CurAbbrevs list.
66
for (size_t i = 0, e = Info->
Abbrevs
.size(); i != e; ++i)
[
all
...]
/external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp
127
const DIEAbbrev &
Abbrevs
= getAbbrev();
132
if (
Abbrevs
.getData()[i].getAttribute() == Attribute)
/external/llvm/lib/DebugInfo/
DWARFCompileUnit.h
39
const DWARFAbbreviationDeclarationSet *
Abbrevs
;
63
const DWARFAbbreviationDeclarationSet *
abbrevs
);
89
return
Abbrevs
;
/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();
231
// If there is a blockinfo for this BlockID, add all the predefined
abbrevs
234
for (unsigned i = 0, e = static_cast<unsigned>(Info->
Abbrevs
.size());
236
CurAbbrevs.push_back(Info->
Abbrevs
[i]);
237
Info->
Abbrevs
[i]->addRef();
245
// Delete all
abbrevs
.
540
Info.
Abbrevs
.push_back(Abbv)
[
all
...]
BitstreamReader.h
41
std::vector<BitCodeAbbrev*>
Abbrevs
;
83
for (unsigned i = 0, e = static_cast<unsigned>(Info.
Abbrevs
.size());
85
Info.
Abbrevs
[i]->dropRef();
190
/// CurAbbrevs -
Abbrevs
installed at in this block.
512
// Delete
abbrevs
from popped scope.
/external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp
30
llvm::DenseMap<unsigned, unsigned>
Abbrevs
;
35
assert(
Abbrevs
.find(recordID) ==
Abbrevs
.end()
37
Abbrevs
[recordID] = abbrevID;
41
assert(
Abbrevs
.find(recordID) !=
Abbrevs
.end() &&
43
return
Abbrevs
[recordID];
206
AbbreviationMap
Abbrevs
;
331
State->Stream.EmitRecordWithBlob(State->
Abbrevs
.get(RECORD_FILENAME), Record,
342
State->Stream.EmitRecordWithAbbrev(State->
Abbrevs
.get(RECORD_SOURCE_RANGE)
[
all
...]
Completed in 51 milliseconds