Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBValueList.cpp20 class ValueListImpl { class
22 ValueListImpl() : m_values() {} in ValueListImpl() function in ValueListImpl
24 ValueListImpl(const ValueListImpl &rhs) : m_values(rhs.m_values) {} in ValueListImpl() function in ValueListImpl
26 ValueListImpl &operator=(const ValueListImpl &rhs) { in operator =()
37 void Append(const ValueListImpl &list) { in Append()
78 m_opaque_up = std::make_unique<ValueListImpl>(*rhs); in SBValueList()
110 m_opaque_up = std::make_unique<ValueListImpl>(*rhs); in operator =()
119 ValueListImpl &SBValueList::operator*() { return *m_opaque_up; } in operator *()
121 const ValueListImpl *SBValueList::operator->() const { in operator ->()
176 m_opaque_up = std::make_unique<ValueListImpl>(); in CreateIfNeeded()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBValueList.h14 class ValueListImpl; variable
54 SBValueList(const ValueListImpl *lldb_object_ptr);
60 ValueListImpl *operator->();
62 ValueListImpl &operator*();
64 const ValueListImpl *operator->() const;
66 const ValueListImpl &operator*() const;
68 ValueListImpl &ref();
70 std::unique_ptr<ValueListImpl> m_opaque_up;