Home
last modified time | relevance | path

Searched defs:rebind_alloc (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/boost/log/detail/
Dallocator_traits.hpp54 struct rebind_alloc struct
57 … typedef typename std::allocator_traits< Allocator >::BOOST_NESTED_TEMPLATE rebind_alloc< U > type;
64 struct rebind_alloc< std::allocator< void >, U > struct
66 typedef std::allocator< U > type;
/third_party/boost/boost/multi_index/detail/
Dallocator_traits.hpp66 struct rebind_alloc struct
68 typedef typename super::template rebind_alloc<T> type;
/third_party/boost/boost/container/
Dallocator_traits.hpp185 template <class T> using rebind_alloc = see_documentation; typedef
257 …template <typename T> using rebind_alloc = typename boost::intrusive::pointer_rebind<Allocator, T… typedef
262 struct rebind_alloc : boost::intrusive::pointer_rebind<Allocator,T>::type struct
264 typedef typename boost::intrusive::pointer_rebind<Allocator,T>::type Base;
267 rebind_alloc(BOOST_FWD_REF(Args)... args) : Base(boost::forward<Args>(args)...) {} in rebind_alloc() argument
/third_party/boost/boost/unordered/detail/
Dimplementation.hpp1061 struct rebind_alloc<Alloc<U, Args...>, T> struct
1063 typedef Alloc<T, Args...> type;
1069 struct rebind_alloc<Alloc<U>, T> struct
1071 typedef Alloc<T> type;
1076 struct rebind_alloc<Alloc<U, A0>, T> struct
1078 typedef Alloc<T, A0> type;
1083 struct rebind_alloc<Alloc<U, A0, A1>, T> struct
1085 typedef Alloc<T, A0, A1> type;
1267 using rebind_alloc = typename rebind_wrap<Alloc, T>::type; typedef