Searched refs:_Vector_base (Results 1 - 1 of 1) sorted by relevance

/haiku/headers/cpp/
H A Dstl_vector.h101 struct _Vector_base struct in inherits:_Vector_alloc_base
110 _Vector_base(const allocator_type& __a) : _Base(__a) {} function in struct:_Vector_base
111 _Vector_base(size_t __n, const allocator_type& __a) : _Base(__a) { function in struct:_Vector_base
117 ~_Vector_base() { _M_deallocate(_M_start, _M_end_of_storage - _M_start); }
123 class _Vector_base {
128 _Vector_base(const _Alloc&)
130 _Vector_base(size_t __n, const _Alloc&)
138 ~_Vector_base() { _M_deallocate(_M_start, _M_end_of_storage - _M_start); }
155 class vector : protected _Vector_base<_Tp, _Alloc>
158 typedef _Vector_base<_T
[all...]

Completed in 29 milliseconds