reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Core/Section.h
   41   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(); }
tools/lldb/source/Core/Section.cpp
  422     m_sections = rhs.m_sections;
  422     m_sections = rhs.m_sections;
  428     size_t section_index = m_sections.size();
  429     m_sections.push_back(section_sp);
  438   if (idx < m_sections.size()) {
  439     m_sections.erase(m_sections.begin() + idx);
  439     m_sections.erase(m_sections.begin() + idx);
  447   iterator begin = m_sections.begin();
  448   iterator end = m_sections.end();
  469   iterator sect_iter, end = m_sections.end();
  470   for (sect_iter = m_sections.begin(); sect_iter != end; ++sect_iter) {
  485   size_t count = m_sections.size();
  487     const_iterator sect_iter, end = m_sections.end();
  488     for (sect_iter = m_sections.begin(); sect_iter != end; ++sect_iter) {
  497   if (idx < m_sections.size())
  498     sect_sp = m_sections[idx];
  506   if (section_dstr && !m_sections.empty()) {
  508     const_iterator end = m_sections.end();
  509     for (sect_iter = m_sections.begin();
  529     const_iterator end = m_sections.end();
  530     for (sect_iter = m_sections.begin();
  547   size_t num_sections = m_sections.size();
  549     if (m_sections[idx]->GetType() == sect_type) {
  550       sect_sp = m_sections[idx];
  553       sect_sp = m_sections[idx]->GetChildren().FindSectionByType(
  566   const_iterator end = m_sections.end();
  567   for (sect_iter = m_sections.begin();
  593   if (show_header && !m_sections.empty()) {
  607   const_iterator end = m_sections.end();
  608   for (sect_iter = m_sections.begin(); sect_iter != end; ++sect_iter) {
  612   if (show_header && !m_sections.empty())
  618   const_iterator pos, end = m_sections.end();
  619   for (pos = m_sections.begin(); pos != end; ++pos) {