Searched defs:rebind_alloc (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container/include/boost/container/ |
D | allocator_traits.hpp | 194 template <class T> using rebind_alloc = see_documentation; typedef 266 …template <typename T> using rebind_alloc = typename boost::intrusive::pointer_rebind<Allocator, T… typedef 271 struct rebind_alloc : boost::intrusive::pointer_rebind<Allocator,T>::type struct 273 typedef typename boost::intrusive::pointer_rebind<Allocator,T>::type Base; 276 rebind_alloc(BOOST_FWD_REF(Args)... args) : Base(boost::forward<Args>(args)...) {} in rebind_alloc() function
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/multi_index/include/boost/multi_index/detail/ |
D | allocator_traits.hpp | 66 struct rebind_alloc struct 68 typedef typename super::template rebind_alloc<T> type;
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | PR9902.cpp | 19 template <class T> using rebind_alloc = typename __allocator_traits_rebind<Alloc, T>::type; typedef
|
H A D | PR9908.cpp | 14 template <class T> using rebind_alloc = typename typedef
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/unordered/include/boost/unordered/detail/ |
D | implementation.hpp | 1061 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
|