Lines Matching refs:_Base
107 _Base; typedef
108 typedef typename _Base::allocator_type allocator_type;
110 _Vector_base(const allocator_type& __a) : _Base(__a) {} in _Vector_base()
111 _Vector_base(size_t __n, const allocator_type& __a) : _Base(__a) { in _Vector_base()
158 typedef _Vector_base<_Tp, _Alloc> _Base; typedef
170 typedef typename _Base::allocator_type allocator_type;
171 allocator_type get_allocator() const { return _Base::get_allocator(); } in get_allocator()
185 using _Base::_M_allocate;
186 using _Base::_M_deallocate;
187 using _Base::_M_start;
188 using _Base::_M_finish;
189 using _Base::_M_end_of_storage;
236 : _Base(__a) {} in _Base() function
240 : _Base(__n, __a) in _Base() function
244 : _Base(__n, allocator_type()) in vector()
248 : _Base(__x.size(), __x.get_allocator()) in vector()
255 const allocator_type& __a = allocator_type()) : _Base(__a) { in _Base() function
276 : _Base(__last - __first, __a)