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

  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.h 37 const DWARFAbbreviationDeclaration *AbbrevDecl;
40 : Offset(0), ParentIdx(0), SiblingIdx(0), AbbrevDecl(0) {}
55 uint32_t getTag() const { return AbbrevDecl ? AbbrevDecl->getTag() : 0; }
56 bool isNULL() const { return AbbrevDecl == 0; }
66 return !isNULL() ? AbbrevDecl->getNumAttributes() : 0;
68 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); }
115 return AbbrevDecl;
DWARFDebugInfoEntry.cpp 34 if (AbbrevDecl) {
41 AbbrevDecl->hasChildren() ? '*' : ' ');
44 const uint32_t numAttributes = AbbrevDecl->getNumAttributes();
46 uint16_t attr = AbbrevDecl->getAttrByIndex(i);
47 uint16_t form = AbbrevDecl->getFormByIndex(i);
110 AbbrevDecl = cu->getAbbreviations()->getAbbreviationDeclaration(abbrCode);
113 const uint32_t numAttributes = AbbrevDecl->getNumAttributes();
118 form = AbbrevDecl->getFormByIndex(i);
222 AbbrevDecl = NULL;
240 AbbrevDecl = cu->getAbbreviations()->getAbbreviationDeclaration(abbrCode)
    [all...]

Completed in 440 milliseconds