Lines Matching refs:_Node_allocator
335 _Node_allocator; in _GLIBCXX_VISIBILITY() typedef
354 _Node_allocator& in _GLIBCXX_VISIBILITY()
356 { return *static_cast<_Node_allocator*>(&this->_M_impl); } in _GLIBCXX_VISIBILITY()
358 const _Node_allocator& in _GLIBCXX_VISIBILITY()
360 { return *static_cast<const _Node_allocator*>(&this->_M_impl); } in _GLIBCXX_VISIBILITY()
369 { return _M_impl._Node_allocator::allocate(1); } in _GLIBCXX_VISIBILITY()
373 { _M_impl._Node_allocator::deallocate(__p, 1); } in _GLIBCXX_VISIBILITY()
437 struct _Rb_tree_impl : public _Node_allocator in _GLIBCXX_VISIBILITY()
444 : _Node_allocator(), _M_key_compare(), _M_header(), in _GLIBCXX_VISIBILITY()
448 _Rb_tree_impl(const _Key_compare& __comp, const _Node_allocator& __a) in _GLIBCXX_VISIBILITY()
449 : _Node_allocator(__a), _M_key_compare(__comp), _M_header(), in _GLIBCXX_VISIBILITY()
454 _Rb_tree_impl(const _Key_compare& __comp, _Node_allocator&& __a) in _GLIBCXX_VISIBILITY()
455 : _Node_allocator(std::move(__a)), _M_key_compare(__comp), in _GLIBCXX_VISIBILITY()
627 : _M_impl(__comp, _Node_allocator(__a)) { } in _GLIBCXX_VISIBILITY()
1261 std::__alloc_swap<_Node_allocator>:: in _GLIBCXX_VISIBILITY()