/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/ |
propagate_on_container_copy_assignment.pass.cpp | 13 // struct allocator_traits 38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_copy_assignment, std::true_type>::value), ""); 39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_copy_assignment, std::false_type>::value), "");
|
propagate_on_container_move_assignment.pass.cpp | 13 // struct allocator_traits 38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_move_assignment, std::true_type>::value), ""); 39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_move_assignment, std::false_type>::value), "");
|
propagate_on_container_swap.pass.cpp | 13 // struct allocator_traits 38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_swap, std::true_type>::value), ""); 39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_swap, std::false_type>::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/ |
pointer.pass.cpp | 13 // struct allocator_traits 40 static_assert((std::is_same<std::allocator_traits<A<char> >::pointer, Ptr<char> >::value), ""); 41 static_assert((std::is_same<std::allocator_traits<B<char> >::pointer, char*>::value), "");
|
propagate_on_container_copy_assignment.pass.cpp | 13 // struct allocator_traits 38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_copy_assignment, std::true_type>::value), ""); 39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_copy_assignment, std::false_type>::value), "");
|
propagate_on_container_move_assignment.pass.cpp | 13 // struct allocator_traits 38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_move_assignment, std::true_type>::value), ""); 39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_move_assignment, std::false_type>::value), "");
|
propagate_on_container_swap.pass.cpp | 13 // struct allocator_traits 38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_swap, std::true_type>::value), ""); 39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_swap, std::false_type>::value), "");
|
/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/ |
allocate.pass.cpp | 13 // struct allocator_traits 37 assert(std::allocator_traits<A<int> >::allocate(a, 10) == (int*)0xDEADBEEF);
|
deallocate.pass.cpp | 13 // struct allocator_traits 40 std::allocator_traits<A<int> >::deallocate(a, (int*)0xDEADBEEF, 10);
|
destroy.pass.cpp | 13 // struct allocator_traits 61 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); 63 std::allocator_traits<A<int> >::destroy(a, (A0*)&a0); 72 std::allocator_traits<B<int> >::construct(b, (A0*)&a0); 75 std::allocator_traits<B<int> >::destroy(b, (A0*)&a0);
|
construct.pass.cpp | 13 // struct allocator_traits 89 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); 97 std::allocator_traits<A<int> >::construct(a, (A1*)&a1, 'c'); 105 std::allocator_traits<A<int> >::construct(a, (A2*)&a2, 'd', 5); 116 std::allocator_traits<B<int> >::construct(b, (A0*)&a0); 127 std::allocator_traits<B<int> >::construct(b, (A1*)&a1, 'c'); 138 std::allocator_traits<B<int> >::construct(b, (A2*)&a2, 'd', 5);
|
allocate_hint.pass.cpp | 13 // struct allocator_traits 56 assert(std::allocator_traits<A<int> >::allocate(a, 10, nullptr) == (int*)0xDEADBEEF); 59 assert(std::allocator_traits<B<int> >::allocate(b, 11, nullptr) == (int*)0xFEADBEEF);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/ |
allocate.pass.cpp | 13 // struct allocator_traits 37 assert(std::allocator_traits<A<int> >::allocate(a, 10) == (int*)0xDEADBEEF);
|
deallocate.pass.cpp | 13 // struct allocator_traits 40 std::allocator_traits<A<int> >::deallocate(a, (int*)0xDEADBEEF, 10);
|
destroy.pass.cpp | 13 // struct allocator_traits 61 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); 63 std::allocator_traits<A<int> >::destroy(a, (A0*)&a0); 72 std::allocator_traits<B<int> >::construct(b, (A0*)&a0); 75 std::allocator_traits<B<int> >::destroy(b, (A0*)&a0);
|
construct.pass.cpp | 13 // struct allocator_traits 89 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); 97 std::allocator_traits<A<int> >::construct(a, (A1*)&a1, 'c'); 105 std::allocator_traits<A<int> >::construct(a, (A2*)&a2, 'd', 5); 116 std::allocator_traits<B<int> >::construct(b, (A0*)&a0); 127 std::allocator_traits<B<int> >::construct(b, (A1*)&a1, 'c'); 138 std::allocator_traits<B<int> >::construct(b, (A2*)&a2, 'd', 5);
|
allocate_hint.pass.cpp | 13 // struct allocator_traits 56 assert(std::allocator_traits<A<int> >::allocate(a, 10, nullptr) == (int*)0xDEADBEEF); 59 assert(std::allocator_traits<B<int> >::allocate(b, 11, nullptr) == (int*)0xFEADBEEF);
|
/external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/ |
select_on_container_copy_construction.pass.cpp | 30 A a2 = std::allocator_traits<A>::select_on_container_copy_construction(a1); 38 A a2 = std::allocator_traits<A>::select_on_container_copy_construction(a1); 48 A a2 = std::allocator_traits<A>::select_on_container_copy_construction(a1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/ |
select_on_container_copy_construction.pass.cpp | 30 A a2 = std::allocator_traits<A>::select_on_container_copy_construction(a1); 38 A a2 = std::allocator_traits<A>::select_on_container_copy_construction(a1); 48 A a2 = std::allocator_traits<A>::select_on_container_copy_construction(a1);
|
/external/libcxx/test/strings/basic.string/ |
types.pass.cpp | 53 static_assert((std::is_same<typename S::size_type, typename std::allocator_traits<Allocator>::size_type>::value), ""); 54 static_assert((std::is_same<typename S::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), ""); 57 static_assert((std::is_same<typename S::pointer, typename std::allocator_traits<Allocator>::pointer>::value), ""); 58 static_assert((std::is_same<typename S::const_pointer, typename std::allocator_traits<Allocator>::const_pointer>::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/ |
types.pass.cpp | 53 static_assert((std::is_same<typename S::size_type, typename std::allocator_traits<Allocator>::size_type>::value), ""); 54 static_assert((std::is_same<typename S::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), ""); 57 static_assert((std::is_same<typename S::pointer, typename std::allocator_traits<Allocator>::pointer>::value), ""); 58 static_assert((std::is_same<typename S::const_pointer, typename std::allocator_traits<Allocator>::const_pointer>::value), "");
|
/external/libcxx/test/containers/sequences/vector.bool/ |
types.pass.cpp | 47 static_assert((std::is_same<typename C::size_type, typename std::allocator_traits<Allocator>::size_type>::value), ""); 48 static_assert((std::is_same<typename C::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/ |
types.pass.cpp | 47 static_assert((std::is_same<typename C::size_type, typename std::allocator_traits<Allocator>::size_type>::value), ""); 48 static_assert((std::is_same<typename C::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), "");
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/ |
alloc_traits.h | 85 struct allocator_traits struct 204 using rebind_traits = allocator_traits<rebind_alloc<_Tp>>; 433 const bool allocator_traits<_Alloc>::__allocate_helper<_Alloc2>::value; 438 allocator_traits<_Alloc>::__construct_helper<_Tp, _Args...>::value; 442 const bool allocator_traits<_Alloc>::__destroy_helper<_Tp>::value; 446 const bool allocator_traits<_Alloc>::__maxsize_helper<_Alloc2>::value; 450 const bool allocator_traits<_Alloc>::__select_helper<_Alloc2>::value; 465 typedef allocator_traits<_Alloc> __traits; 473 typedef allocator_traits<_Alloc> __traits; 488 typedef allocator_traits<_Alloc> __traits [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
alloc_traits.h | 85 struct allocator_traits struct 204 using rebind_traits = allocator_traits<rebind_alloc<_Tp>>; 433 const bool allocator_traits<_Alloc>::__allocate_helper<_Alloc2>::value; 438 allocator_traits<_Alloc>::__construct_helper<_Tp, _Args...>::value; 442 const bool allocator_traits<_Alloc>::__destroy_helper<_Tp>::value; 446 const bool allocator_traits<_Alloc>::__maxsize_helper<_Alloc2>::value; 450 const bool allocator_traits<_Alloc>::__select_helper<_Alloc2>::value; 465 typedef allocator_traits<_Alloc> __traits; 473 typedef allocator_traits<_Alloc> __traits; 488 typedef allocator_traits<_Alloc> __traits [all...] |