Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DValueObjectList.cpp21 m_value_objects = rhs.m_value_objects; in operator =()
26 m_value_objects.push_back(val_obj_sp); in Append()
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()
49 valobj_sp = m_value_objects[idx]; in RemoveValueObjectAtIndex()
50 m_value_objects.erase(m_value_objects.begin() + idx); in RemoveValueObjectAtIndex()
57 if (idx >= m_value_objects.size()) in SetValueObjectAtIndex()
58 m_value_objects.resize(idx + 1); in SetValueObjectAtIndex()
59 m_value_objects[idx] = valobj_sp; in SetValueObjectAtIndex()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectList.h49 void Clear() { m_value_objects.clear(); } in Clear()
52 return m_value_objects; in GetObjects()
57 collection m_value_objects; variable