Searched defs:t2 (Results 1 - 25 of 53) sorted by relevance

123

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.overview/
H A Dcopy_ctor.pass.cpp22 std::type_index t2 = t1; local
23 assert(t2 == t1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/type.info/
H A Dtype_info.pass.cpp19 const std::type_info& t2 = typeid(int); local
20 assert(t1 == t2);
23 assert(!t1.before(t2));
24 assert(strcmp(t1.name(), t2.name()) == 0);
H A Dtype_info_hash.pass.cpp19 const std::type_info& t2 = typeid(int); local
21 assert(t1.hash_code() == t2.hash_code());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
H A Ddefault.pass.cpp27 std::regex_traits<wchar_t> t2; local
28 assert(t2.getloc().name() == "C");
34 std::regex_traits<wchar_t> t2; local
35 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
H A Dgetloc.pass.cpp26 std::regex_traits<wchar_t> t2; local
27 assert(t2.getloc().name() == "C");
33 std::regex_traits<wchar_t> t2; local
34 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.steady/
H A Dnow.pass.cpp23 C::time_point t2 = C::now(); local
24 assert(t2 >= t1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/
H A Deq.pass.cpp23 std::type_index t2 = typeid(int); local
25 assert(t1 == t2);
H A Dlt.pass.cpp25 std::type_index t2 = typeid(int); local
27 assert(!(t1 < t2));
28 assert( (t1 <= t2));
29 assert(!(t1 > t2));
30 assert( (t1 >= t2));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.forward/
H A Diosfwd.pass.cpp19 std::char_traits<wchar_t>* t2 = 0; local
24 std::basic_ios<wchar_t>* t2 = 0; local
29 std::basic_streambuf<wchar_t>* t2 = 0; local
34 std::basic_istream<wchar_t>* t2 = 0; local
39 std::basic_ostream<wchar_t>* t2 = 0; local
44 std::basic_iostream<wchar_t>* t2 = 0; local
49 std::basic_stringbuf<wchar_t>* t2 = 0; local
54 std::basic_istringstream<wchar_t>* t2 = 0; local
59 std::basic_ostringstream<wchar_t>* t2 = 0; local
64 std::basic_stringstream<wchar_t>* t2 local
69 std::basic_filebuf<wchar_t>* t2 = 0; local
74 std::basic_ifstream<wchar_t>* t2 = 0; local
79 std::basic_ofstream<wchar_t>* t2 = 0; local
84 std::basic_fstream<wchar_t>* t2 = 0; local
89 std::istreambuf_iterator<wchar_t>* t2 = 0; local
94 std::ostreambuf_iterator<wchar_t>* t2 = 0; local
99 std::wios* t2 = 0; local
103 std::istream* t2 = 0; local
109 std::istringstream* t2 = 0; local
115 std::ifstream* t2 = 0; local
121 std::wistream* t2 = 0; local
127 std::wistringstream* t2 = 0; local
133 std::wifstream* t2 = 0; local
139 std::streampos* t2 = 0; local
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/
H A Dplaceholders.pass.cpp20 T t2; local
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.nonmember/
H A Dop_-duration.pass.cpp28 std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5); local
29 assert(t2.time_since_epoch() == Duration2(2995));
34 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5); local
35 static_assert(t2.time_since_epoch() == Duration2(2995), "");
H A Dop_+.pass.cpp32 std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5); local
33 assert(t2.time_since_epoch() == Duration2(3005));
34 t2 = Duration2(6) + t1;
35 assert(t2.time_since_epoch() == Duration2(3006));
40 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5); local
41 static_assert(t2.time_since_epoch() == Duration2(3005), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
H A Dtuple_cat.pass.cpp31 std::tuple<> t2 = std::tuple_cat(t1); local
51 constexpr std::tuple<> t2 = std::tuple_cat(t1); local
91 std::tuple<> t2; local
92 std::tuple<> t3 = std::tuple_cat(t1, t2);
96 std::tuple<int> t2(2);
97 std::tuple<int> t3 = std::tuple_cat(t1, t2);
102 std::tuple<int> t2(2);
103 std::tuple<int> t3 = std::tuple_cat(t2, t1);
108 std::tuple<int> t2(2);
109 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2);
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/
H A Deq.pass.cpp28 const T2 t2; local
29 assert(t1 == t2);
30 assert(!(t1 != t2));
36 const T2 t2(1.1);
37 assert(!(t1 == t2));
38 assert(t1 != t2);
44 const T2 t2(1);
45 assert(t1 == t2);
46 assert(!(t1 != t2));
52 const T2 t2(
[all...]
H A Dlt.pass.cpp40 const T2 t2; local
41 assert(!(t1 < t2));
42 assert( (t1 <= t2));
43 assert(!(t1 > t2));
44 assert( (t1 >= t2));
50 const T2 t2(1);
51 assert(!(t1 < t2));
52 assert( (t1 <= t2));
53 assert(!(t1 > t2));
54 assert( (t1 >= t2));
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
H A Dmerge.pass.cpp26 const T t2[] = {0, 1, 2, 4, 8, 9, 10, 11, 14, 15}; local
29 C c2(std::begin(t2), std::end(t2));
39 const T t2[] = {0, 1, 2, 4, 8, 9, 10, 11, 14, 15}; local
42 C c2(std::begin(t2), std::end(t2));
H A Dmerge_pred.pass.cpp27 const T t2[] = {15, 14, 11, 10, 9, 8, 4, 2, 1, 0}; local
30 C c2(std::begin(t2), std::end(t2));
40 const T t2[] = {15, 14, 11, 10, 9, 8, 4, 2, 1, 0}; local
43 C c2(std::begin(t2), std::end(t2));
H A Dremove.pass.cpp26 const T t2[] = {5, 5, 5}; local
28 C c2(std::begin(t2), std::end(t2));
45 const T t2[] = {5, 5, 5}; local
47 C c2(std::begin(t2), std::end(t2));
63 const T t2[] = {5, 5, 5}; local
65 C c2(std::begin(t2), std::end(t2));
74 const T t2[] local
93 const T t2[] = {5, 5, 5}; local
111 const T t2[] = {5, 5, 5}; local
[all...]
H A Dunique.pass.cpp26 const T t2[] = {0, 5, 0, 5}; local
28 C c2(std::begin(t2), std::end(t2));
36 const T t2[] = {0}; local
38 C c2(std::begin(t2), std::end(t2));
46 const T t2[] = {5}; local
48 C c2(std::begin(t2), std::end(t2));
64 const T t2[] local
75 const T t2[] = {0, 5, 0, 5}; local
85 const T t2[] = {0}; local
95 const T t2[] = {5}; local
113 const T t2[] = {5, 0}; local
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
H A Dmember_swap.pass.cpp28 const T t2[] = {10, 11, 12}; local
29 C c2(std::begin(t2), std::end(t2), A(2));
73 const T t2[] = {10, 11, 12}; local
74 C c2(std::begin(t2), std::end(t2), A(2));
107 const T t2[] = {10, 11, 12}; local
108 C c2(std::begin(t2), std::end(t2), A(2));
152 const T t2[] local
186 const T t2[] = {10, 11, 12}; local
231 const T t2[] = {10, 11, 12}; local
[all...]
H A Dnon_member_swap.pass.cpp29 const T t2[] = {10, 11, 12}; local
30 C c2(std::begin(t2), std::end(t2), A(2));
74 const T t2[] = {10, 11, 12}; local
75 C c2(std::begin(t2), std::end(t2), A(2));
108 const T t2[] = {10, 11, 12}; local
109 C c2(std::begin(t2), std::end(t2), A(2));
153 const T t2[] local
187 const T t2[] = {10, 11, 12}; local
232 const T t2[] = {10, 11, 12}; local
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/
H A Dtypes.pass.cpp30 T2 t2 = std::try_to_lock; local
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.hel/
H A Dintegral_constant.pass.cpp46 std::true_type t2 = t1; local
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/
H A Dat.pass.cpp62 constexpr T t2 = c.at(2); local
63 static_assert (t2 == 3.5, "");
H A Dfront_back.pass.cpp57 constexpr T t2 = c.back(); local
58 static_assert (t2 == 3.5, "");

Completed in 2079 milliseconds

123