Searched refs:m_sections (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp405 m_sections = rhs.m_sections;
411 size_t section_index = m_sections.size();
412 m_sections.push_back(section_sp);
421 if (idx < m_sections.size()) {
422 m_sections.erase(m_sections.begin() + idx);
430 iterator begin = m_sections.begin();
431 iterator end = m_sections.end();
452 iterator sect_iter, end = m_sections
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DSection.h41 const_iterator begin() const { return m_sections.begin(); }
42 const_iterator end() const { return m_sections.end(); }
43 const_iterator begin() { return m_sections.begin(); }
44 const_iterator end() { return m_sections.end(); }
74 size_t GetSize() const { return m_sections.size(); }
90 void Clear() { m_sections.clear(); }
93 collection m_sections; member in class:lldb_private::SectionList
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwp.cpp115 auto it = m_sections.find(sect_type);
116 if (it != m_sections.end()) {
131 m_sections[sect_type] = data;
136 m_sections[sect_type].Clear();
H A DSymbolFileDWARFDwp.h44 std::map<lldb::SectionType, lldb_private::DWARFDataExtractor> m_sections; member in class:SymbolFileDWARFDwp

Completed in 104 milliseconds