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

References

tools/lldb/include/lldb/Symbol/UnwindPlan.h
  400     m_row_list.reserve(rhs.m_row_list.size());
  400     m_row_list.reserve(rhs.m_row_list.size());
  401     for (const RowSP &row_sp : rhs.m_row_list)
  402       m_row_list.emplace_back(new Row(*row_sp));
  431     if (m_row_list.empty())
  433     return m_row_list.front()->GetCFAValue().GetRegisterNumber();
  494     m_row_list.clear();
tools/lldb/source/Symbol/UnwindPlan.cpp
  360   if (m_row_list.empty() ||
  361       m_row_list.back()->GetOffset() != row_sp->GetOffset())
  362     m_row_list.push_back(row_sp);
  364     m_row_list.back() = row_sp;
  369   collection::iterator it = m_row_list.begin();
  370   while (it != m_row_list.end()) {
  376   if (it == m_row_list.end() || (*it)->GetOffset() != row_sp->GetOffset())
  377     m_row_list.insert(it, row_sp);
  384   if (!m_row_list.empty()) {
  386       row = m_row_list.back();
  388       collection::const_iterator pos, end = m_row_list.end();
  389       for (pos = m_row_list.begin(); pos != end; ++pos) {
  401   return idx < m_row_list.size();
  405   if (idx < m_row_list.size())
  406     return m_row_list[idx];
  412               idx, (uint32_t)m_row_list.size());
  418   if (m_row_list.empty()) {
  423   return m_row_list.back();
  426 int UnwindPlan::GetRowCount() const { return m_row_list.size(); }
  540   collection::const_iterator pos, begin = m_row_list.begin(),
  541                                   end = m_row_list.end();