Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
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()
81 SBValueList::SBValueList(const ValueListImpl *lldb_object_ptr) : m_opaque_up() { in SBValueList()
83 m_opaque_up = std::make_unique<ValueListImpl>(*lldb_object_ptr); in SBValueList()
110 m_opaque_up = std::make_unique<ValueListImpl>(*rhs); in operator =()
117 ValueListImpl *SBValueList::operator->() { return m_opaque_up.get(); } in operator ->()
[all …]
/external/llvm-project/lldb/include/lldb/API/
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;