Lines Matching refs:_Node_allocator
447 rebind<_Rb_tree_node<_Val> >::other _Node_allocator; in _GLIBCXX_VISIBILITY()
449 typedef __gnu_cxx::__alloc_traits<_Node_allocator> _Alloc_traits; in _GLIBCXX_VISIBILITY()
584 _Node_allocator& in _GLIBCXX_VISIBILITY()
588 const _Node_allocator& in _GLIBCXX_VISIBILITY()
693 : public _Node_allocator in _GLIBCXX_VISIBILITY()
701 is_nothrow_default_constructible<_Node_allocator>::value in _GLIBCXX_VISIBILITY()
703 : _Node_allocator() in _GLIBCXX_VISIBILITY()
707 : _Node_allocator(_Alloc_traits::_S_select_on_copy(__x)) in _GLIBCXX_VISIBILITY()
712 _Rb_tree_impl(const _Key_compare& __comp, const _Node_allocator& __a) in _GLIBCXX_VISIBILITY()
713 : _Node_allocator(__a), _Base_key_compare(__comp) in _GLIBCXX_VISIBILITY()
718 _Rb_tree_impl(const _Key_compare& __comp, _Node_allocator&& __a) in _GLIBCXX_VISIBILITY()
719 : _Node_allocator(std::move(__a)), _Base_key_compare(__comp) in _GLIBCXX_VISIBILITY()
826 using node_type = _Node_handle<_Key, _Val, _Node_allocator>; in _GLIBCXX_VISIBILITY()
934 : _M_impl(__comp, _Node_allocator(__a)) { } in _GLIBCXX_VISIBILITY()
945 : _M_impl(_Compare(), _Node_allocator(__a)) in _GLIBCXX_VISIBILITY()
949 : _M_impl(__x._M_impl._M_key_compare, _Node_allocator(__a)) in _GLIBCXX_VISIBILITY()
958 : _Rb_tree(std::move(__x), _Node_allocator(__a)) in _GLIBCXX_VISIBILITY()
961 _Rb_tree(_Rb_tree&& __x, _Node_allocator&& __a); in _GLIBCXX_VISIBILITY()
1605 _Rb_tree(_Rb_tree&& __x, _Node_allocator&& __a) in _GLIBCXX_VISIBILITY()