HomeSort by relevance Sort by last modified time
    Searched refs:_Node_alloc_type (Results 1 - 4 of 4) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_list.h 303 // allocator_type and _Node_alloc_type. The conversion is
306 _Node_alloc_type;
311 : public _Node_alloc_type
316 : _Node_alloc_type(), _M_node()
319 _List_impl(const _Node_alloc_type& __a)
320 : _Node_alloc_type(__a), _M_node()
324 _List_impl(_Node_alloc_type&& __a)
325 : _Node_alloc_type(std::move(__a)), _M_node()
334 { return _M_impl._Node_alloc_type::allocate(1); }
338 { _M_impl._Node_alloc_type::deallocate(__p, 1);
    [all...]
forward_list.h 283 rebind<_Fwd_list_node<_Tp>>::other _Node_alloc_type;
285 typedef __gnu_cxx::__alloc_traits<_Node_alloc_type> _Node_alloc_traits;
288 : public _Node_alloc_type
293 : _Node_alloc_type(), _M_head()
296 _Fwd_list_impl(const _Node_alloc_type& __a)
297 : _Node_alloc_type(__a), _M_head()
300 _Fwd_list_impl(_Node_alloc_type&& __a)
301 : _Node_alloc_type(std::move(__a)), _M_head()
312 _Node_alloc_type&
314 { return *static_cast<_Node_alloc_type*>(&this->_M_impl);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_list.h 303 // allocator_type and _Node_alloc_type. The conversion is
306 _Node_alloc_type;
311 : public _Node_alloc_type
316 : _Node_alloc_type(), _M_node()
319 _List_impl(const _Node_alloc_type& __a)
320 : _Node_alloc_type(__a), _M_node()
324 _List_impl(_Node_alloc_type&& __a)
325 : _Node_alloc_type(std::move(__a)), _M_node()
334 { return _M_impl._Node_alloc_type::allocate(1); }
338 { _M_impl._Node_alloc_type::deallocate(__p, 1);
    [all...]
forward_list.h 283 rebind<_Fwd_list_node<_Tp>>::other _Node_alloc_type;
285 typedef __gnu_cxx::__alloc_traits<_Node_alloc_type> _Node_alloc_traits;
288 : public _Node_alloc_type
293 : _Node_alloc_type(), _M_head()
296 _Fwd_list_impl(const _Node_alloc_type& __a)
297 : _Node_alloc_type(__a), _M_head()
300 _Fwd_list_impl(_Node_alloc_type&& __a)
301 : _Node_alloc_type(std::move(__a)), _M_head()
312 _Node_alloc_type&
314 { return *static_cast<_Node_alloc_type*>(&this->_M_impl);
    [all...]

Completed in 271 milliseconds