OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AbbrevDecl
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugInfoEntry.h
36
const DWARFAbbreviationDeclaration *
AbbrevDecl
;
39
: Offset(0), SiblingIdx(0),
AbbrevDecl
(nullptr) {}
51
uint32_t getTag() const { return
AbbrevDecl
?
AbbrevDecl
->getTag() : 0; }
52
bool isNULL() const { return
AbbrevDecl
== nullptr; }
61
bool hasChildren() const { return !isNULL() &&
AbbrevDecl
->hasChildren(); }
86
return
AbbrevDecl
;
/external/llvm/lib/DebugInfo/DWARF/
DWARFDebugInfoEntry.cpp
47
if (
AbbrevDecl
) {
56
AbbrevDecl
->hasChildren() ? '*' : ' ');
59
for (const auto &AttrSpec :
AbbrevDecl
->attributes()) {
194
AbbrevDecl
= nullptr;
197
AbbrevDecl
= U->getAbbreviations()->getAbbreviationDeclaration(AbbrCode);
198
if (nullptr ==
AbbrevDecl
) {
208
for (const auto &AttrSpec :
AbbrevDecl
->attributes()) {
236
if (!
AbbrevDecl
)
239
uint32_t AttrIdx =
AbbrevDecl
->findAttributeIndex(Attr);
251
DWARFFormValue::skipValue(
AbbrevDecl
->getFormByIndex(i)
[
all
...]
Completed in 204 milliseconds