Home | History | Annotate | Download | only in bits

Lines Matching full:allocator

39 /** @file allocator.h
47 // Define the base class to std::allocator.
48 #include <bits/c++allocator.h>
60 class allocator;
62 /// allocator<void> specialization.
64 class allocator<void>
75 { typedef allocator<_Tp1> other; };
79 * @brief The "standard" allocator, as per [20.4].
86 class allocator: public __glibcxx_base_allocator<_Tp>
99 { typedef allocator<_Tp1> other; };
101 allocator() throw() { }
103 allocator(const allocator& __a) throw()
107 allocator(const allocator<_Tp1>&) throw() { }
109 ~allocator() throw() { }
116 operator==(const allocator<_T1>&, const allocator<_T2>&)
121 operator==(const allocator<_Tp>&, const allocator<_Tp>&)
126 operator!=(const allocator<_T1>&, const allocator<_T2>&)
131 operator!=(const allocator<_Tp>&, const allocator<_Tp>&)
138 extern template class allocator<char>;
139 extern template class allocator<wchar_t>;