/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/ |
D | is_nothrow_constructible.pass.cpp | 47 class Empty class 77 test_is_nothrow_constructible<Empty> (); in main() 78 test_is_nothrow_constructible<Empty, const Empty&> (); in main()
|
D | is_trivially_copy_assignable.pass.cpp | 28 class Empty class 58 test_has_trivially_copy_assignable<Empty>(); in main() 69 test_has_not_trivially_copy_assignable<const Empty>(); in main()
|
D | is_trivially_move_assignable.pass.cpp | 28 class Empty class 58 test_has_trivial_assign<Empty>(); in main() 69 test_has_not_trivial_assign<const Empty>(); in main()
|
D | is_move_assignable.pass.cpp | 28 class Empty class 57 test_is_move_assignable<Empty> (); in main()
|
D | is_nothrow_move_assignable.pass.cpp | 28 class Empty class 53 test_has_nothrow_assign<Empty>(); in main()
|
D | is_nothrow_copy_assignable.pass.cpp | 28 class Empty class 53 test_has_nothrow_assign<Empty>(); in main()
|
D | is_copy_assignable.pass.cpp | 28 class Empty class 63 test_is_copy_assignable<Empty> (); in main()
|
D | is_move_constructible.pass.cpp | 28 class Empty class 73 test_is_move_constructible<Empty>(); in main()
|
D | is_copy_constructible.pass.cpp | 28 class Empty class 66 test_is_copy_constructible<Empty>(); in main()
|
D | is_trivially_copy_constructible.pass.cpp | 30 class Empty class 67 test_is_trivially_copy_constructible<Empty>(); in main()
|
D | is_nothrow_move_constructible.pass.cpp | 32 class Empty class 55 test_is_nothrow_move_constructible<Empty>(); in main()
|
D | is_nothrow_copy_constructible.pass.cpp | 32 class Empty class 55 test_is_nothrow_copy_constructible<Empty>(); in main()
|
D | is_trivially_move_constructible.pass.cpp | 28 class Empty class 78 test_is_trivially_move_constructible<Empty>(); in main()
|
D | is_nothrow_default_constructible.pass.cpp | 34 class Empty class 57 test_is_nothrow_default_constructible<Empty>(); in main()
|
D | is_empty.pass.cpp | 34 class Empty class 63 test_is_empty<Empty>(); in main()
|
D | is_abstract.pass.cpp | 34 class Empty class 66 test_is_not_abstract<Empty>(); in main()
|
D | is_trivially_default_constructible.pass.cpp | 34 class Empty class 69 test_is_trivially_default_constructible<Empty>(); in main()
|
D | is_trivially_destructible.pass.cpp | 34 class Empty class 69 test_is_trivially_destructible<Empty>(); in main()
|
D | has_virtual_destructor.pass.cpp | 34 class Empty class 66 test_has_not_virtual_destructor<Empty>(); in main()
|
D | is_destructible.pass.cpp | 34 class Empty class 67 test_is_destructible<Empty>(); in main()
|
D | is_nothrow_destructible.pass.cpp | 34 class Empty class 74 test_is_nothrow_destructible<Empty>(); in main()
|
D | is_polymorphic.pass.cpp | 34 class Empty class 74 test_is_not_polymorphic<Empty>(); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/ |
D | get_const.pass.cpp | 22 struct Empty {}; struct 45 typedef std::tuple<Empty> T; in main() 46 constexpr T t{Empty()}; in main() 47 constexpr Empty e = std::get<0>(t); in main()
|
D | get_non_const.pass.cpp | 24 struct Empty {}; struct 27 std::tuple<int, Empty> a; 29 Empty e; 30 constexpr S() : a{1,Empty{}}, k(std::get<0>(a)), e(std::get<1>(a)) {} in S()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/ |
D | UTypes.pass.cpp | 24 struct Empty {}; struct 68 constexpr std::tuple<Empty> t0{Empty()}; in main()
|