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) {}
60 uint32_t getTag() const { return AbbrevDecl ? AbbrevDecl->getTag() : 0; }
61 bool isNULL() const { return AbbrevDecl == 0; }
71 return !isNULL() ? AbbrevDecl->getNumAttributes() : 0;
73 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); }
120 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);
105 AbbrevDecl = NULL;
108 AbbrevDecl = CU->getAbbreviations()->getAbbreviationDeclaration(AbbrCode);
109 assert(AbbrevDecl);
113 for (uint32_t i = 0, n = AbbrevDecl->getNumAttributes(); i < n; ++i) {
114 uint16_t Form = AbbrevDecl->getFormByIndex(i)
    [all...]

Completed in 48 milliseconds