Home
last modified time | relevance | path

Searched refs:m_sections (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp471 m_sections = rhs.m_sections; in operator =()
477 size_t section_index = m_sections.size(); in AddSection()
478 m_sections.push_back(section_sp); in AddSection()
487 if (idx < m_sections.size()) { in DeleteSection()
488 m_sections.erase(m_sections.begin() + idx); in DeleteSection()
496 iterator begin = m_sections.begin(); in FindSectionIndex()
497 iterator end = m_sections.end(); in FindSectionIndex()
518 iterator sect_iter, end = m_sections.end(); in ReplaceSection()
519 for (sect_iter = m_sections.begin(); sect_iter != end; ++sect_iter) { in ReplaceSection()
534 size_t count = m_sections.size(); in GetNumSections()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DSection.h41 const_iterator begin() const { return m_sections.begin(); } in begin()
42 const_iterator end() const { return m_sections.end(); } in end()
43 const_iterator begin() { return m_sections.begin(); } in begin()
44 const_iterator end() { return m_sections.end(); } in end()
75 size_t GetSize() const { return m_sections.size(); } in GetSize()
91 void Clear() { m_sections.clear(); } in Clear()
100 collection m_sections;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.cpp156 m_symbols(std::move(symbols)), m_sections(std::move(sections)) {} in ObjectFileJSON()
183 for (const auto &section : m_sections) { in CreateSections()
H A DObjectFileJSON.h109 std::vector<JSONSection> m_sections; variable
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp5884 std::vector<std::vector<std::shared_ptr<SectionNode>>> m_sections; member