Searched refs:AddressRangeListImpl (Results 1 – 5 of 5) sorted by relevance
14 AddressRangeListImpl::AddressRangeListImpl() : m_ranges() {} in AddressRangeListImpl() function in AddressRangeListImpl16 AddressRangeListImpl &17 AddressRangeListImpl::operator=(const AddressRangeListImpl &rhs) { in operator =()24 size_t AddressRangeListImpl::GetSize() const { return m_ranges.size(); } in GetSize()26 void AddressRangeListImpl::Reserve(size_t capacity) { in Reserve()30 void AddressRangeListImpl::Append(const AddressRange &sb_region) { in Append()34 void AddressRangeListImpl::Append(const AddressRangeListImpl &list) { in Append()41 void AddressRangeListImpl::Clear() { m_ranges.clear(); } in Clear()44 AddressRangeListImpl::GetAddressRangeAtIndex(size_t index) { in GetAddressRangeAtIndex()50 AddressRanges &AddressRangeListImpl::ref() { return m_ranges; } in ref()
23 class AddressRangeListImpl {25 AddressRangeListImpl();27 AddressRangeListImpl(const AddressRangeListImpl &rhs) = default;29 AddressRangeListImpl &operator=(const AddressRangeListImpl &rhs);37 void Append(const AddressRangeListImpl &list);
17 class AddressRangeListImpl; variable49 lldb_private::AddressRangeListImpl &ref() const;51 std::unique_ptr<lldb_private::AddressRangeListImpl> m_opaque_up;
24 : m_opaque_up(std::make_unique<AddressRangeListImpl>()) { in SBAddressRangeList()29 : m_opaque_up(std::make_unique<AddressRangeListImpl>(*rhs.m_opaque_up)) { in SBAddressRangeList()96 lldb_private::AddressRangeListImpl &SBAddressRangeList::ref() const { in ref()
169 SRCS+= Core/AddressRangeListImpl.cpp