Home
last modified time | relevance | path

Searched refs:m_has_children (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFAbbreviationDeclaration.cpp21 : m_code(InvalidCode), m_tag(llvm::dwarf::DW_TAG_null), m_has_children(0), in DWARFAbbreviationDeclaration()
26 : m_code(InvalidCode), m_tag(tag), m_has_children(has_children), in DWARFAbbreviationDeclaration()
42 m_has_children = data.GetU8(offset_ptr); in extract()
DDWARFDebugInfoEntry.h39 m_has_children(false), m_abbr_idx(0), m_tag(llvm::dwarf::DW_TAG_null) {} in DWARFDebugInfoEntry()
121 bool HasChildren() const { return m_has_children; } in HasChildren()
123 void SetHasChildren(bool b) { m_has_children = b; } in SetHasChildren()
176 m_has_children : 1; variable
DDWARFAbbreviationDeclaration.h28 bool HasChildren() const { return m_has_children; } in HasChildren()
61 uint8_t m_has_children; variable
DDWARFDebugInfoEntry.cpp65 m_has_children = abbrevDecl->HasChildren(); in Extract()
197 m_has_children = false; in Extract()
882 m_abbr_idx == rhs.m_abbr_idx && m_has_children == rhs.m_has_children && in operator ==()