Home
last modified time | relevance | path

Searched refs:m_value_objects (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Core/
DValueObjectList.cpp21 m_value_objects = rhs.m_value_objects; in operator =()
26 m_value_objects.push_back(val_obj_sp); in Append()
30 std::copy(valobj_list.m_value_objects.begin(), // source begin in Append()
31 valobj_list.m_value_objects.end(), // source end in Append()
32 back_inserter(m_value_objects)); // destination in Append()
35 size_t ValueObjectList::GetSize() const { return m_value_objects.size(); } in GetSize()
37 void ValueObjectList::Resize(size_t size) { m_value_objects.resize(size); } in Resize()
41 if (idx < m_value_objects.size()) in GetValueObjectAtIndex()
42 valobj_sp = m_value_objects[idx]; in GetValueObjectAtIndex()
48 if (idx < m_value_objects.size()) { in RemoveValueObjectAtIndex()
[all …]
/external/llvm-project/lldb/include/lldb/Core/
DValueObjectList.h49 void Clear() { m_value_objects.clear(); } in Clear()
52 return m_value_objects; in GetObjects()
57 collection m_value_objects; variable