OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Abbrev
(Results
1 - 10
of
10
) sorted by null
/external/clang/lib/Frontend/
TestModuleFileExtension.cpp
31
auto
Abbrev
= Stream.EmitAbbrev(Abv);
44
Stream.EmitRecordWithBlob(
Abbrev
, Record, Message);
SerializedDiagnosticPrinter.cpp
427
static void AddSourceLocationAbbrev(llvm::BitCodeAbbrev *
Abbrev
) {
429
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
430
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
431
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
432
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
435
static void AddRangeLocationAbbrev(llvm::BitCodeAbbrev *
Abbrev
) {
436
AddSourceLocationAbbrev(
Abbrev
);
437
AddSourceLocationAbbrev(
Abbrev
);
454
BitCodeAbbrev *
Abbrev
= new BitCodeAbbrev();
455
Abbrev
->Add(BitCodeAbbrevOp(RECORD_VERSION))
[
all
...]
/external/google-breakpad/src/common/dwarf/
dwarf2reader_test_common.h
72
// DWARF version,
abbrev
table offset, and address size.
119
TestAbbrevTable &
Abbrev
(int code, DwarfTag tag, DwarfHasChild has_children) {
dwarf2reader.h
244
struct
Abbrev
{
271
const
Abbrev
&
abbrev
);
283
// Skips the die with attributes specified in
ABBREV
starting at
286
const
Abbrev
&
abbrev
);
316
std::vector<
Abbrev
>* abbrevs_;
[
all
...]
/external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.cpp
24
for (DIEAbbrev *
Abbrev
: Abbreviations)
25
Abbrev
->~DIEAbbrev();
32
DIEAbbrev
Abbrev
= Die.generateAbbrev();
33
Abbrev
.Profile(ID);
43
DIEAbbrev *New = new (AbbrevAllocator) DIEAbbrev(std::move(
Abbrev
));
95
const DIEAbbrev &
Abbrev
= assignAbbrevNumber(Die);
110
(void)
Abbrev
;
111
assert(
Abbrev
.hasChildren() && "Children flag not set");
127
// Start the debug
abbrev
section.
/external/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnit.h
111
const DWARFDebugAbbrev *
Abbrev
;
DWARFContext.h
46
std::unique_ptr<DWARFDebugAbbrev>
Abbrev
;
/external/clang/lib/Serialization/
GlobalModuleIndex.cpp
753
BitCodeAbbrev *
Abbrev
= new BitCodeAbbrev();
754
Abbrev
->Add(BitCodeAbbrevOp(IDENTIFIER_INDEX));
755
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
756
Abbrev
->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
757
unsigned IDTableAbbrev = Stream.EmitAbbrev(
Abbrev
);
ASTWriter.cpp
[
all
...]
/external/llvm/tools/dsymutil/
DwarfLinker.cpp
[
all
...]
Completed in 1003 milliseconds