/external/libcxx/test/std/thread/futures/futures.promise/ |
D | alloc_ctor.pass.cpp | 29 std::promise<int> p(std::allocator_arg, test_allocator<int>()); in main() 37 std::promise<int&> p(std::allocator_arg, test_allocator<int>()); in main() 45 std::promise<void> p(std::allocator_arg, test_allocator<void>()); in main() 54 std::promise<int> p(std::allocator_arg, bare_allocator<void>()); in main() 59 std::promise<int&> p(std::allocator_arg, bare_allocator<void>()); in main() 64 std::promise<void> p(std::allocator_arg, bare_allocator<void>()); in main() 70 std::promise<int> p(std::allocator_arg, min_allocator<void>()); in main() 75 std::promise<int&> p(std::allocator_arg, min_allocator<void>()); in main() 80 std::promise<void> p(std::allocator_arg, min_allocator<void>()); in main()
|
D | move_assign.pass.cpp | 28 std::promise<int> p0(std::allocator_arg, test_allocator<int>()); in main() 29 std::promise<int> p(std::allocator_arg, test_allocator<int>()); in main() 49 std::promise<int&> p0(std::allocator_arg, test_allocator<int>()); in main() 50 std::promise<int&> p(std::allocator_arg, test_allocator<int>()); in main() 70 std::promise<void> p0(std::allocator_arg, test_allocator<void>()); in main() 71 std::promise<void> p(std::allocator_arg, test_allocator<void>()); in main()
|
D | copy_assign.fail.cpp | 25 std::promise<int> p0(std::allocator_arg, test_allocator<int>()); in main() 26 std::promise<int> p(std::allocator_arg, test_allocator<int>()); in main() 46 std::promise<int&> p0(std::allocator_arg, test_allocator<int>()); in main() 47 std::promise<int&> p(std::allocator_arg, test_allocator<int>()); in main() 67 std::promise<void> p0(std::allocator_arg, test_allocator<void>()); in main() 68 std::promise<void> p(std::allocator_arg, test_allocator<void>()); in main()
|
D | swap.pass.cpp | 29 std::promise<int> p0(std::allocator_arg, test_allocator<int>()); in main() 30 std::promise<int> p(std::allocator_arg, test_allocator<int>()); in main() 43 std::promise<int> p0(std::allocator_arg, test_allocator<int>()); in main() 44 std::promise<int> p(std::allocator_arg, test_allocator<int>()); in main() 57 std::promise<int> p0(std::allocator_arg, test_allocator<int>()); in main() 71 std::promise<int> p0(std::allocator_arg, test_allocator<int>()); in main()
|
D | move_ctor.pass.cpp | 28 std::promise<int> p0(std::allocator_arg, test_allocator<int>()); in main() 47 std::promise<int&> p0(std::allocator_arg, test_allocator<int>()); in main() 66 std::promise<void> p0(std::allocator_arg, test_allocator<void>()); in main()
|
D | copy_ctor.fail.cpp | 25 std::promise<int> p0(std::allocator_arg, test_allocator<int>()); in main() 44 std::promise<int&> p0(std::allocator_arg, test_allocator<int>()); in main() 63 std::promise<void> p0(std::allocator_arg, test_allocator<void>()); in main()
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
D | alloc.pass.cpp | 30 std::tuple<> t(std::allocator_arg, A1<int>()); in main() 33 std::tuple<int> t(std::allocator_arg, A1<int>()); in main() 37 std::tuple<DefaultOnly> t(std::allocator_arg, A1<int>()); in main() 42 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5)); in main() 48 std::tuple<alloc_last> t(std::allocator_arg, A1<int>(5)); in main() 54 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5)); in main() 62 std::tuple<DefaultOnly, alloc_first, alloc_last> t(std::allocator_arg, in main() 73 std::tuple<DefaultOnly, alloc_first, alloc_last> t(std::allocator_arg, in main()
|
D | alloc_copy.pass.cpp | 31 T t(std::allocator_arg, A1<int>(), t0); in main() 36 T t(std::allocator_arg, A1<int>(), t0); in main() 43 T t(std::allocator_arg, A1<int>(5), t0); in main() 51 T t(std::allocator_arg, A1<int>(5), t0); in main() 60 T t(std::allocator_arg, A1<int>(5), t0); in main() 71 T t(std::allocator_arg, A1<int>(5), t0); in main()
|
D | alloc_const_Types.pass.cpp | 29 std::tuple<int> t(std::allocator_arg, A1<int>(), 3); in main() 34 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5), alloc_first(3)); in main() 40 std::tuple<alloc_last> t(std::allocator_arg, A1<int>(5), alloc_last(3)); in main() 46 std::tuple<int, alloc_first> t(std::allocator_arg, A1<int>(5), in main() 55 std::tuple<int, alloc_first, alloc_last> t(std::allocator_arg, in main() 67 std::tuple<int, alloc_first, alloc_last> t(std::allocator_arg, in main()
|
D | alloc_move.pass.cpp | 32 T t(std::allocator_arg, A1<int>(), std::move(t0)); in main() 37 T t(std::allocator_arg, A1<int>(), std::move(t0)); in main() 44 T t(std::allocator_arg, A1<int>(5), std::move(t0)); in main() 52 T t(std::allocator_arg, A1<int>(5), std::move(t0)); in main() 60 T t(std::allocator_arg, A1<int>(5), std::move(t0)); in main() 70 T t(std::allocator_arg, A1<int>(5), std::move(t0)); in main()
|
D | alloc_UTypes.pass.cpp | 95 std::tuple<MoveOnly> t(std::allocator_arg, A1<int>(), MoveOnly(0)); in main() 99 std::tuple<MoveOnly, MoveOnly> t(std::allocator_arg, A1<int>(), in main() 105 std::tuple<MoveOnly, MoveOnly, MoveOnly> t(std::allocator_arg, A1<int>(), in main() 115 std::tuple<int, alloc_first, alloc_last> t(std::allocator_arg, in main() 125 std::tuple<MoveOnly, MoveOnly, MoveOnly> t(std::allocator_arg, A1<int>(), in main() 132 std::tuple<MoveOnly, MoveOnly, MoveOnly> t(std::allocator_arg, A1<int>(), in main()
|
D | alloc_convert_copy.pass.cpp | 32 T1 t1(std::allocator_arg, A1<int>(), t0); in main() 40 T1 t1(std::allocator_arg, A1<int>(5), t0); in main() 50 T1 t1(std::allocator_arg, A1<int>(5), t0); in main() 62 T1 t1(std::allocator_arg, A1<int>(5), t0); in main()
|
D | alloc_convert_move.pass.cpp | 50 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0)); in main() 58 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0)); in main() 66 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0)); in main() 77 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0)); in main()
|
D | alloc_const_pair.pass.cpp | 33 T1 t1(std::allocator_arg, A1<int>(5), t0); in main() 42 T1 t1(std::allocator_arg, A1<int>(5), t0); in main() 53 T1 t1(std::allocator_arg, A1<int>(5), t0); in main()
|
D | alloc_move_pair.pass.cpp | 50 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0)); in main()
|
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
D | alloc_F.pass.cpp | 60 std::function<int(int)> f(std::allocator_arg, test_allocator<A>(), A()); in main() 67 std::function<int(int)> f(std::allocator_arg, test_allocator<int(*)(int)>(), g); in main() 72 std::function<int(int)> f(std::allocator_arg, test_allocator<int(*)(int)>(), in main() 79 std::function<int(const A*, int)> f(std::allocator_arg, in main() 93 std::function<void(int)> fun(std::allocator_arg, in main()
|
D | alloc_function.pass.cpp | 61 std::function<int(int)> f2(std::allocator_arg, test_allocator<A>(), f); in main() 74 std::function<int(int)> f2(std::allocator_arg, test_allocator<int(*)(int)>(), f); in main() 83 std::function<int(int)> f2(std::allocator_arg, al, g); in main() 94 std::function<int(int)> f2(std::allocator_arg, test_allocator<int>(), f); in main()
|
D | alloc.pass.cpp | 23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>()); in main()
|
D | alloc_nullptr.pass.cpp | 23 std::function<int(int)> f(std::allocator_arg, test_allocator<int>(), nullptr); in main()
|
D | alloc_rfunction.pass.cpp | 59 std::function<int(int)> f2(std::allocator_arg, test_allocator<A>(), std::move(f)); in main()
|
/external/libcxx/test/std/thread/futures/futures.tas/futures.task.members/ |
D | ctor_func_alloc.pass.cpp | 48 std::packaged_task<double(int, char)> p(std::allocator_arg, in main() 63 std::packaged_task<double(int, char)> p(std::allocator_arg, in main() 78 std::packaged_task<int(int)> p(std::allocator_arg, test_allocator<A>(), &func); in main() 90 std::packaged_task<int(int)> p(std::allocator_arg, test_allocator<A>(), func); in main() 101 std::packaged_task<double(int, char)> p(std::allocator_arg, in main() 113 std::packaged_task<double(int, char)> p(std::allocator_arg, in main()
|
/external/libcxx/test/std/thread/futures/futures.shared_future/ |
D | dtor.pass.cpp | 30 std::promise<T> p(std::allocator_arg, test_allocator<T>()); in main() 44 std::promise<T> p(std::allocator_arg, test_allocator<int>()); in main() 58 std::promise<T> p(std::allocator_arg, test_allocator<T>()); in main()
|
/external/libcxx/test/std/thread/futures/futures.unique_future/ |
D | dtor.pass.cpp | 30 std::promise<T> p(std::allocator_arg, test_allocator<T>()); in main() 44 std::promise<T> p(std::allocator_arg, test_allocator<int>()); in main() 58 std::promise<T> p(std::allocator_arg, test_allocator<T>()); in main()
|
/external/libcxx/test/std/utilities/memory/allocator.tag/ |
D | allocator_arg.pass.cpp | 21 test(std::allocator_arg); in main()
|
/external/libcxx/src/ |
D | memory.cpp | 38 const allocator_arg_t allocator_arg = allocator_arg_t(); variable
|