Searched refs:t0 (Results 1 - 25 of 96) sorted by relevance

1234

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/
H A Dcopy.fail.cpp25 T t0(MoveOnly(2));
27 t = t0;
H A Dcopy.pass.cpp24 T t0; local
26 t = t0;
30 T t0(2);
32 t = t0;
37 T t0(2, 'a');
39 t = t0;
45 const T t0(2, 'a', "some text");
47 t = t0;
H A Dconst_pair.pass.cpp26 T0 t0(2.5, 'a');
28 t1 = t0;
H A Dconvert_copy.pass.cpp39 T0 t0(2.5);
41 t1 = t0;
47 T0 t0(2.5, 'a');
49 t1 = t0;
56 T0 t0(2.5, 'a', D(3));
58 t1 = t0;
68 T0 t0(2.5, 'a', d2);
70 t1 = t0;
H A Dmove.pass.cpp25 T t0; local
27 t = std::move(t0);
31 T t0(MoveOnly(0));
33 t = std::move(t0);
38 T t0(MoveOnly(0), MoveOnly(1));
40 t = std::move(t0);
46 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2));
48 t = std::move(t0);
H A Dconvert_move.pass.cpp42 T0 t0(2.5);
44 t1 = std::move(t0);
50 T0 t0(2.5, 'a');
52 t1 = std::move(t0);
59 T0 t0(2.5, 'a', D(3));
61 t1 = std::move(t0);
71 T0 t0(2.5, 'a', d2);
73 t1 = std::move(t0);
81 T0 t0(2.5, 'a', std::unique_ptr<D>(new D(3)));
83 t1 = std::move(t0);
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dcopy.fail.cpp25 T t0(MoveOnly(2));
26 T t = t0;
H A Dmove.pass.cpp25 T t0; local
26 T t = std::move(t0);
30 T t0(MoveOnly(0));
31 T t = std::move(t0);
36 T t0(MoveOnly(0), MoveOnly(1));
37 T t = std::move(t0);
43 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2));
44 T t = std::move(t0);
H A Dcopy.pass.cpp26 T t0; local
27 T t = t0;
31 T t0(2);
32 T t = t0;
37 T t0(2, 'a');
38 T t = t0;
44 const T t0(2, 'a', "some text");
45 T t = t0;
53 constexpr T t0(2);
54 constexpr T t = t0;
59 constexpr T t0; local
[all...]
H A Dalloc_copy.pass.cpp28 T t0; local
29 T t(std::allocator_arg, A1<int>(), t0);
33 T t0(2);
34 T t(std::allocator_arg, A1<int>(), t0);
39 T t0(2);
41 T t(std::allocator_arg, A1<int>(5), t0);
47 T t0(2);
49 T t(std::allocator_arg, A1<int>(5), t0);
55 T t0(2, 3);
58 T t(std::allocator_arg, A1<int>(5), t0);
[all...]
H A Dalloc_move.pass.cpp29 T t0; local
30 T t(std::allocator_arg, A1<int>(), std::move(t0));
34 T t0(MoveOnly(0));
35 T t(std::allocator_arg, A1<int>(), std::move(t0));
40 T t0(1);
42 T t(std::allocator_arg, A1<int>(5), std::move(t0));
48 T t0(1);
50 T t(std::allocator_arg, A1<int>(5), std::move(t0));
56 T t0(0 ,1);
58 T t(std::allocator_arg, A1<int>(5), std::move(t0));
[all...]
H A Dalloc_convert_copy.pass.cpp29 T0 t0(2.5);
30 T1 t1(std::allocator_arg, A1<int>(), t0);
36 T0 t0(2);
38 T1 t1(std::allocator_arg, A1<int>(5), t0);
45 T0 t0(2, 3);
48 T1 t1(std::allocator_arg, A1<int>(5), t0);
57 T0 t0(1.5, 2, 3);
60 T1 t1(std::allocator_arg, A1<int>(5), t0);
H A Dconvert_copy.pass.cpp58 T0 t0(2.5);
59 T1 t1 = t0;
66 constexpr T0 t0(2.5);
67 constexpr T1 t1 = t0;
73 constexpr T0 t0(2);
74 constexpr T1 t1{t0};
81 T0 t0(2.5, 'a');
82 T1 t1 = t0;
89 T0 t0(2.5, 'a', D(3));
90 T1 t1 = t0;
[all...]
H A Dconvert_move.pass.cpp41 T0 t0(2.5);
42 T1 t1 = std::move(t0);
48 T0 t0(2.5, 'a');
49 T1 t1 = std::move(t0);
56 T0 t0(2.5, 'a', D(3));
57 T1 t1 = std::move(t0);
66 T0 t0(2.5, 'a', d);
67 T1 t1 = std::move(t0);
76 T0 t0(2.5, 'a', std::unique_ptr<D>(new D(3)));
77 T1 t1 = std::move(t0);
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.special/
H A Dnon_member_swap.pass.cpp26 T t0; local
28 swap(t0, t1);
32 T t0(MoveOnly(0));
34 swap(t0, t1);
35 assert(std::get<0>(t0) == 1);
40 T t0(MoveOnly(0), MoveOnly(1));
42 swap(t0, t1);
43 assert(std::get<0>(t0) == 2);
44 assert(std::get<1>(t0) == 3);
50 T t0(MoveOnl
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.swap/
H A Dmember_swap.pass.cpp25 T t0; local
27 t0.swap(t1);
31 T t0(MoveOnly(0));
33 t0.swap(t1);
34 assert(std::get<0>(t0) == 1);
39 T t0(MoveOnly(0), MoveOnly(1));
41 t0.swap(t1);
42 assert(std::get<0>(t0) == 2);
43 assert(std::get<1>(t0) == 3);
49 T t0(MoveOnl
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/
H A Ddetach.pass.cpp46 std::thread t0((G()));
47 assert(t0.joinable());
48 t0.detach();
49 assert(!t0.joinable());
H A Djoin.pass.cpp46 std::thread t0((G()));
47 assert(t0.joinable());
48 t0.join();
49 assert(!t0.joinable());
H A Djoinable.pass.cpp46 std::thread t0((G()));
47 assert(t0.joinable());
48 t0.join();
49 assert(!t0.joinable());
H A Dnative_handle.pass.cpp46 std::thread t0((G()));
47 pthread_t pid = t0.native_handle();
49 t0.join();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
H A Dassign_copy.pass.cpp27 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
29 C c0(std::begin(t0), std::end(t0), A(10));
39 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
41 C c0(std::begin(t0), std::end(t0), A(10));
51 const T t0[] = {10, 11, 12, 13}; local
53 C c0(std::begin(t0), std::end(t0), A(10));
63 const T t0[] local
76 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
88 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
100 const T t0[] = {10, 11, 12, 13}; local
112 const T t0[] = {10, 11, 12, 13}; local
125 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
137 const T t0[] = {10, 11, 12, 13}; local
[all...]
H A Dassign_range.pass.cpp27 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
31 c.assign(I(std::begin(t0)), I(std::end(t0)));
40 const T t0[] = {10, 11, 12, 13}; local
44 c.assign(I(std::begin(t0)), I(std::end(t0)));
54 const T t0[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
58 c.assign(I(std::begin(t0)), I(std::end(t0)));
67 const T t0[] local
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.async/
H A Dasync.pass.cpp69 Clock::time_point t0 = Clock::now(); local
72 assert(t1-t0 < ms(100));
77 Clock::time_point t0 = Clock::now(); local
80 assert(t1-t0 < ms(100));
85 Clock::time_point t0 = Clock::now(); local
88 assert(t1-t0 < ms(100));
93 Clock::time_point t0 = Clock::now(); local
96 assert(t1-t0 > ms(100));
102 Clock::time_point t0 = Clock::now(); local
105 assert(t1-t0 < m
110 Clock::time_point t0 = Clock::now(); local
118 Clock::time_point t0 = Clock::now(); local
126 Clock::time_point t0 = Clock::now(); local
135 Clock::time_point t0 = Clock::now(); local
143 Clock::time_point t0 = Clock::now(); local
151 Clock::time_point t0 = Clock::now(); local
159 Clock::time_point t0 = Clock::now(); local
168 Clock::time_point t0 = Clock::now(); local
178 Clock::time_point t0 = Clock::now(); local
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/
H A Dmove.pass.cpp64 std::thread t0(G(), 5, 5.5);
65 std::thread::id id = t0.get_id();
67 t1 = std::move(t0);
69 assert(t0.get_id() == std::thread::id());
75 std::thread t0(G(), 5, 5.5);
76 std::thread::id id = t0.get_id();
78 t0 = std::move(t1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/unord.hash/
H A Dfloating.pass.cpp34 std::size_t t0 = h(0.); local
41 assert(t0 == tn0);
42 assert(t0 != tp1);
43 assert(t0 != t1);
44 assert(t0 != tn1);
45 assert(t0 != pinf);
46 assert(t0 != ninf);

Completed in 401 milliseconds

1234