Home | History | Annotate | Download | only in bits

Lines Matching defs:_Alloc_traits

356 	  rebind_traits<_Sp_counted_deleter> _Alloc_traits;
357 typename _Alloc_traits::allocator_type __a(_M_del);
358 _Alloc_traits::destroy(__a, this);
359 _Alloc_traits::deallocate(__a, this, 1);
417 rebind_traits<_Sp_counted_ptr_inplace> _Alloc_traits;
418 typename _Alloc_traits::allocator_type __a(_M_impl);
419 _Alloc_traits::destroy(__a, this);
420 _Alloc_traits::deallocate(__a, this, 1);
471 rebind_traits<_Sp_cd_type> _Alloc_traits;
472 typename _Alloc_traits::allocator_type __a;
476 __mem = _Alloc_traits::allocate(__a, 1);
477 _Alloc_traits::construct(__a, __mem, __p, std::move(__d));
484 _Alloc_traits::deallocate(__a, __mem, 1);
494 rebind_traits<_Sp_cd_type> _Alloc_traits;
495 typename _Alloc_traits::allocator_type __a2(__a);
499 __mem = _Alloc_traits::allocate(__a2, 1);
500 _Alloc_traits::construct(__a2, __mem,
508 _Alloc_traits::deallocate(__a2, __mem, 1);
520 rebind_traits<_Sp_cp_type> _Alloc_traits;
521 typename _Alloc_traits::allocator_type __a2(__a);
522 _Sp_cp_type* __mem = _Alloc_traits::allocate(__a2, 1);
525 _Alloc_traits::construct(__a2, __mem, std::move(__a),
531 _Alloc_traits::deallocate(__a2, __mem, 1);
1011 typedef allocator_traits<_Alloc> _Alloc_traits;
1012 _Alloc_traits::destroy(_M_alloc, __ptr);
1013 _Alloc_traits::deallocate(_M_alloc, __ptr, 1);