Searched refs:m_row_list (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindPlan.cpp360 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
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindPlan.h382 : m_row_list(), m_plan_valid_address_range(), m_register_kind(reg_kind),
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();
519 collection m_row_list; member in class:lldb_private::UnwindPlan

Completed in 75 milliseconds