Lines Matching refs:__vector_base
326 class __vector_base
361 __vector_base()
363 _LIBCPP_INLINE_VISIBILITY __vector_base(const allocator_type& __a);
365 _LIBCPP_INLINE_VISIBILITY __vector_base(allocator_type&& __a) _NOEXCEPT;
367 ~__vector_base();
379 void __copy_assign_alloc(const __vector_base& __c)
384 void __move_assign_alloc(__vector_base& __c)
392 void __copy_assign_alloc(const __vector_base& __c, true_type)
404 void __copy_assign_alloc(const __vector_base&, false_type)
408 void __move_assign_alloc(__vector_base& __c, true_type)
415 void __move_assign_alloc(__vector_base&, false_type)
423 __vector_base<_Tp, _Allocator>::__destruct_at_end(pointer __new_last) _NOEXCEPT
433 __vector_base<_Tp, _Allocator>::__vector_base()
443 __vector_base<_Tp, _Allocator>::__vector_base(const allocator_type& __a)
453 __vector_base<_Tp, _Allocator>::__vector_base(allocator_type&& __a) _NOEXCEPT
460 __vector_base<_Tp, _Allocator>::~__vector_base()
471 : private __vector_base<_Tp, _Allocator>
474 typedef __vector_base<_Tp, _Allocator> __base;