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 35 const DWARFAbbreviationDeclaration *AbbrevDecl;
38 : Offset(0), ParentIdx(0), SiblingIdx(0), AbbrevDecl(0) {}
53 uint32_t getTag() const { return AbbrevDecl ? AbbrevDecl->getTag() : 0; }
54 bool isNULL() const { return AbbrevDecl == 0; }
57 return !isNULL() ? AbbrevDecl->getNumAttributes() : 0;
59 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); }
106 return AbbrevDecl;
DWARFDebugInfoEntry.cpp 33 if (AbbrevDecl) {
40 AbbrevDecl->hasChildren() ? '*' : ' ');
43 const uint32_t numAttributes = AbbrevDecl->getNumAttributes();
45 uint16_t attr = AbbrevDecl->getAttrByIndex(i);
46 uint16_t form = AbbrevDecl->getFormByIndex(i);
109 AbbrevDecl = cu->getAbbreviations()->getAbbreviationDeclaration(abbrCode);
112 const uint32_t numAttributes = AbbrevDecl->getNumAttributes();
116 form = AbbrevDecl->getFormByIndex(i);
203 AbbrevDecl = NULL;
223 AbbrevDecl = cu->getAbbreviations()->getAbbreviationDeclaration(abbrCode)
    [all...]

Completed in 72 milliseconds