Home | History | Annotate | Download | only in Modules

Lines Matching full:_allocator

7 template <class, class _Allocator>
10 _Allocator __alloc() const;
11 __vector_base(_Allocator);
14 template <class _Tp, class _Allocator = allocator>
15 class vector : __vector_base<_Tp, _Allocator> {
17 vector() noexcept(is_nothrow_default_constructible<_Allocator>::value);
20 noexcept(is_nothrow_move_constructible<_Allocator>::value);
23 template <class _Tp, class _Allocator>
24 vector<_Tp, _Allocator>::vector(const vector &__x) : __vector_base<_Tp, _Allocator>(__x.__alloc()) {}