Searched refs:rebind_alloc (Results 1 – 6 of 6) sorted by relevance
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/ |
D | rebind_alloc.pass.cpp | 87 …static_assert((std::is_same<std::allocator_traits<A<char> >::rebind_alloc<double>, ReboundA<double… in main() 88 …static_assert((std::is_same<std::allocator_traits<B<int, char> >::rebind_alloc<double>, ReboundB<d… in main() 89 …static_assert((std::is_same<std::allocator_traits<C<char> >::rebind_alloc<double>, C<double> >::va… in main() 90 …static_assert((std::is_same<std::allocator_traits<D<int, char> >::rebind_alloc<double>, D<double, … in main() 91 …static_assert((std::is_same<std::allocator_traits<E<char> >::rebind_alloc<double>, E<double> >::va… in main() 92 …static_assert((std::is_same<std::allocator_traits<F<char> >::rebind_alloc<double>, F<double> >::va… in main() 93 …static_assert((std::is_same<std::allocator_traits<G<char> >::rebind_alloc<double>, G<double> >::va… in main() 95 …static_assert((std::is_same<std::allocator_traits<A<char> >::rebind_alloc<double>::other, ReboundA… in main() 96 …static_assert((std::is_same<std::allocator_traits<B<int, char> >::rebind_alloc<double>::other, Reb… in main() 97 …static_assert((std::is_same<std::allocator_traits<C<char> >::rebind_alloc<double>::other, C<double… in main() [all …]
|
/external/clang/test/SemaCXX/ |
D | PR9902.cpp | 19 template <class T> using rebind_alloc = typename __allocator_traits_rebind<Alloc, T>::type; typedef 20 template <class T> using rebind_traits = allocator_traits<rebind_alloc<T>>; 28 allocator_traits<allocator<char>>::rebind_alloc<int> a; in main()
|
D | PR9908.cpp | 14 template <class T> using rebind_alloc = typename typedef 16 template <class T> using rebind_traits = allocator_traits<rebind_alloc<T>>;
|
/external/libcxx/include/experimental/ |
D | memory_resource | 45 allocator_traits<Allocator>::rebind_alloc<char>>; 350 using _Alloc = typename _CTraits::template rebind_alloc< 420 typename allocator_traits<_Alloc>::template rebind_alloc<char>
|
/external/libcxx/include/ |
D | scoped_allocator | 47 OuterTraits::template rebind_alloc<Tp>, InnerAllocs...> other; 431 typename _OuterTraits::template rebind_alloc<_Tp>, _InnerAllocs...
|
D | memory | 84 template <class T> using rebind_alloc = Alloc::rebind<U>::other | Alloc<T, Args...>; 85 template <class T> using rebind_traits = allocator_traits<rebind_alloc<T>>; 1535 template <class _Tp> using rebind_alloc = 1537 template <class _Tp> using rebind_traits = allocator_traits<rebind_alloc<_Tp>>; 1539 template <class _Tp> struct rebind_alloc 1542 {typedef allocator_traits<typename rebind_alloc<_Tp>::other> other;}; 1772 typedef typename _Traits::template rebind_alloc<_Tp> type; 1774 typedef typename _Traits::template rebind_alloc<_Tp>::other type;
|