Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObjectList.cpp20 m_value_objects.push_back(val_obj_sp); in Append()
24 std::copy(valobj_list.m_value_objects.begin(), // source begin in Append()
25 valobj_list.m_value_objects.end(), // source end in Append()
26 back_inserter(m_value_objects)); // destination in Append()
29 size_t ValueObjectList::GetSize() const { return m_value_objects.size(); } in GetSize()
31 void ValueObjectList::Resize(size_t size) { m_value_objects.resize(size); } in Resize()
35 if (idx < m_value_objects.size()) in GetValueObjectAtIndex()
36 valobj_sp = m_value_objects[idx]; in GetValueObjectAtIndex()
42 if (idx < m_value_objects.size()) { in RemoveValueObjectAtIndex()
43 valobj_sp = m_value_objects[idx]; in RemoveValueObjectAtIndex()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DValueObjectList.h47 void Clear() { m_value_objects.clear(); } in Clear()
50 return m_value_objects; in GetObjects()
56 collection m_value_objects; variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandReturnObject.h169 const ValueObjectList &GetValueObjectList() const { return m_value_objects; } in GetValueObjectList()
171 ValueObjectList &GetValueObjectList() { return m_value_objects; } in GetValueObjectList()
206 ValueObjectList m_value_objects; variable