Lines Matching defs:DWARFDebugInfoEntry
24 class DWARFDebugInfoEntry;
32 DWARFBaseDIE(DWARFUnit *cu, DWARFDebugInfoEntry *die)
35 DWARFBaseDIE(const DWARFUnit *cu, DWARFDebugInfoEntry *die)
38 DWARFBaseDIE(DWARFUnit *cu, const DWARFDebugInfoEntry *die)
39 : m_cu(cu), m_die(const_cast<DWARFDebugInfoEntry *>(die)) {}
41 DWARFBaseDIE(const DWARFUnit *cu, const DWARFDebugInfoEntry *die)
43 m_die(const_cast<DWARFDebugInfoEntry *>(die)) {}
59 DWARFDebugInfoEntry *GetDIE() const { return m_die; }
63 void Set(DWARFUnit *cu, DWARFDebugInfoEntry *die) {
122 DWARFDebugInfoEntry *m_die = nullptr;