Lines Matching refs:allocator

75     class allocator<void>  in _GLIBCXX_VISIBILITY()
89 { typedef allocator<_Tp1> other; }; in _GLIBCXX_VISIBILITY()
104 allocator() = default; in _GLIBCXX_VISIBILITY()
105 ~allocator() = default; in _GLIBCXX_VISIBILITY()
109 allocator(const allocator<_Up>&) noexcept { } in _GLIBCXX_VISIBILITY()
129 class allocator : public __allocator_base<_Tp> in _GLIBCXX_VISIBILITY()
145 { typedef allocator<_Tp1> other; }; in _GLIBCXX_VISIBILITY()
161 allocator() _GLIBCXX_NOTHROW { } in _GLIBCXX_VISIBILITY()
164 allocator(const allocator& __a) _GLIBCXX_NOTHROW in _GLIBCXX_VISIBILITY()
169 allocator& operator=(const allocator&) = default; in _GLIBCXX_VISIBILITY()
174 allocator(const allocator<_Tp1>&) _GLIBCXX_NOTHROW { } in _GLIBCXX_VISIBILITY()
179 ~allocator() _GLIBCXX_NOTHROW { } in _GLIBCXX_VISIBILITY()
210 operator==(const allocator&, const allocator&) _GLIBCXX_NOTHROW in _GLIBCXX_VISIBILITY()
215 operator!=(const allocator&, const allocator&) _GLIBCXX_NOTHROW in _GLIBCXX_VISIBILITY()
229 operator==(const allocator<_T1>&, const allocator<_T2>&) in _GLIBCXX_VISIBILITY()
236 operator!=(const allocator<_T1>&, const allocator<_T2>&) in _GLIBCXX_VISIBILITY()
246 class allocator<const _Tp> in _GLIBCXX_VISIBILITY()
250 template<typename _Up> allocator(const allocator<_Up>&) { } in _GLIBCXX_VISIBILITY()
254 class allocator<volatile _Tp> in _GLIBCXX_VISIBILITY()
258 template<typename _Up> allocator(const allocator<_Up>&) { } in _GLIBCXX_VISIBILITY()
262 class allocator<const volatile _Tp> in _GLIBCXX_VISIBILITY()
266 template<typename _Up> allocator(const allocator<_Up>&) { } in _GLIBCXX_VISIBILITY()
274 extern template class allocator<char>; in _GLIBCXX_VISIBILITY()
275 extern template class allocator<wchar_t>; in _GLIBCXX_VISIBILITY()