Lines Matching refs:STLAllocator
105 class STLAllocator {
108 ~STLAllocator() { in ~STLAllocator()
112 STLAllocator(const Heap& heap) : in STLAllocator() function
118 STLAllocator(const STLAllocator<U>& other) : in STLAllocator() function
122 STLAllocator(const STLAllocator&) = default;
123 STLAllocator<T>& operator=(const STLAllocator<T>&) = default;
134 bool operator ==(const STLAllocator<U>& other) const {
138 inline bool operator !=(const STLAllocator<U>& other) const {
143 friend class STLAllocator; variable
154 class Allocator : public STLAllocator<T> {
159 STLAllocator<T>(other) { in Allocator()
163 Allocator(const STLAllocator<U>& other) : in Allocator()
164 STLAllocator<T>(other) { in Allocator()
170 using STLAllocator<T>::allocate;
171 using STLAllocator<T>::deallocate;
172 using STLAllocator<T>::heap_;
175 return STLAllocator<T>::allocate(1); in allocate()