Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBValueList.cpp21 class ValueListImpl { class
23 ValueListImpl() = default;
25 ValueListImpl(const ValueListImpl &rhs) = default;
27 ValueListImpl &operator=(const ValueListImpl &rhs) { in operator =()
39 void Append(const ValueListImpl &list) { in Append()
83 m_opaque_up = std::make_unique<ValueListImpl>(*rhs); in SBValueList()
86 SBValueList::SBValueList(const ValueListImpl *lldb_object_ptr) { in SBValueList()
88 m_opaque_up = std::make_unique<ValueListImpl>(*lldb_object_ptr); in SBValueList()
114 m_opaque_up = std::make_unique<ValueListImpl>(*rhs); in operator =()
121 ValueListImpl *SBValueList::operator->() { return m_opaque_up.get(); } in operator ->()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBValueList.h14 class ValueListImpl; variable
81 SBValueList(const ValueListImpl *lldb_object_ptr);
87 ValueListImpl *operator->();
89 ValueListImpl &operator*();
91 const ValueListImpl *operator->() const;
93 const ValueListImpl &operator*() const;
95 ValueListImpl &ref();
97 std::unique_ptr<ValueListImpl> m_opaque_up;