Searched refs:rebind_traits (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/test/std/utilities/memory/allocator.traits/ |
D | rebind_traits.pass.cpp | 69 …static_assert((std::is_same<std::allocator_traits<A<char> >::rebind_traits<double>, std::allocator… in main() 70 …static_assert((std::is_same<std::allocator_traits<B<int, char> >::rebind_traits<double>, std::allo… in main() 71 …static_assert((std::is_same<std::allocator_traits<C<char> >::rebind_traits<double>, std::allocator… in main() 72 …static_assert((std::is_same<std::allocator_traits<D<int, char> >::rebind_traits<double>, std::allo… in main() 73 …static_assert((std::is_same<std::allocator_traits<E<char> >::rebind_traits<double>, std::allocator… in main() 75 …static_assert((std::is_same<std::allocator_traits<A<char> >::rebind_traits<double>::other, std::al… in main() 76 …static_assert((std::is_same<std::allocator_traits<B<int, char> >::rebind_traits<double>::other, st… in main() 77 …static_assert((std::is_same<std::allocator_traits<C<char> >::rebind_traits<double>::other, std::al… in main() 78 …static_assert((std::is_same<std::allocator_traits<D<int, char> >::rebind_traits<double>::other, st… in main() 79 …static_assert((std::is_same<std::allocator_traits<E<char> >::rebind_traits<double>::other, std::al… in main()
|
/external/clang/test/SemaCXX/ |
D | PR9908.cpp | 16 template <class T> using rebind_traits = allocator_traits<rebind_alloc<T>>; typedef 32 allocator_traits<A<char> >::rebind_traits<double> a; in main()
|
D | PR9902.cpp | 20 template <class T> using rebind_traits = allocator_traits<rebind_alloc<T>>; typedef
|
/external/libcxx/test/support/ |
D | container_test_types.h | 340 static_assert(std::is_same<A1T::rebind_traits<float>, A2T>::value, ""); 341 static_assert(std::is_same<A2T::rebind_traits<int>, A1T>::value, "");
|
/external/libcxx/include/ |
D | memory | 85 template <class T> using rebind_traits = allocator_traits<rebind_alloc<T>>; 1537 template <class _Tp> using rebind_traits = allocator_traits<rebind_alloc<_Tp>>; 1541 template <class _Tp> struct rebind_traits
|