Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Symbol/
DBlock.cpp25 : UserID(uid), m_parent_scope(nullptr), m_children(), m_ranges(), in Block()
35 size_t num_ranges = m_ranges.GetSize(); in GetDescription()
47 const Range &range = m_ranges.GetEntryRef(i); in GetDescription()
81 if (!m_ranges.IsEmpty()) { in Dump()
84 size_t num_ranges = m_ranges.GetSize(); in Dump()
86 const Range &range = m_ranges.GetEntryRef(i); in Dump()
170 if (!m_ranges.IsEmpty()) { in DumpAddressRanges()
171 size_t num_ranges = m_ranges.GetSize(); in DumpAddressRanges()
173 const Range &range = m_ranges.GetEntryRef(i); in DumpAddressRanges()
181 return m_ranges.FindEntryThatContains(range_offset) != nullptr; in Contains()
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/Symbol/
DBlock.h343 size_t GetNumRanges() const { return m_ranges.GetSize(); } in GetNumRanges()
367 RangeList m_ranges; variable
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.h565 std::unique_ptr<DWARFDebugRanges> m_ranges; variable
DSymbolFileDWARF.cpp659 if (!m_ranges) { in GetDebugRanges()
664 m_ranges = std::make_unique<DWARFDebugRanges>(); in GetDebugRanges()
666 if (m_ranges) in GetDebugRanges()
667 m_ranges->Extract(m_context); in GetDebugRanges()
669 return m_ranges.get(); in GetDebugRanges()