Searched defs:t2 (Results 26 - 50 of 53) sorted by relevance

123

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/
H A Dindexing.pass.cpp55 constexpr T t2 = c[2]; local
56 static_assert (t2 == 3.5, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
H A Dremove_if.pass.cpp31 const T t2[] = {5, 5, 5}; local
33 C c2(std::begin(t2), std::end(t2));
50 const T t2[] = {5, 5, 5}; local
52 C c2(std::begin(t2), std::end(t2));
68 const T t2[] = {5, 5, 5}; local
70 C c2(std::begin(t2), std::end(t2));
79 const T t2[] local
98 const T t2[] = {5, 5, 5}; local
116 const T t2[] = {5, 5, 5}; local
[all...]
H A Dunique_pred.pass.cpp31 const T t2[] = {0, 5, 0, 5}; local
33 C c2(std::begin(t2), std::end(t2));
41 const T t2[] = {0}; local
43 C c2(std::begin(t2), std::end(t2));
51 const T t2[] = {5}; local
53 C c2(std::begin(t2), std::end(t2));
69 const T t2[] local
80 const T t2[] = {0, 5, 0, 5}; local
90 const T t2[] = {0}; local
100 const T t2[] = {5}; local
118 const T t2[] = {5, 0}; local
[all...]
H A Dsplice_after_flist.pass.cpp22 const T t2[] = {10, 11, 12, 13, 14, 15}; variable
24 const int size_t2 = std::end(t2) - std::begin(t2);
35 assert(*i == t2[n2]);
51 C c2(t2, t2+l);
67 C c2(t2, t2+l);
H A Dsplice_after_one.pass.cpp22 const T t2[] = {10, 11, 12}; variable
24 const int size_t2 = std::end(t2) - std::begin(t2);
35 assert(*i == t2[n2]);
88 C c2(std::begin(t2), std::end(t2));
118 C c2(std::begin(t2), std::end(t2));
H A Dsplice_after_range.pass.cpp23 const T t2[] = {10, 11, 12, 13, 14, 15}; variable
25 const int size_t2 = std::end(t2) - std::begin(t2);
36 assert(*i == t2[n2]);
91 C c2(std::begin(t2), std::end(t2));
135 C c2(std::begin(t2), std::end(t2));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
H A Datan.pass.cpp43 std::complex<double> t2 = atanh(t1); local
44 std::complex<double> z(imag(t2), -real(t2));
H A Dsin.pass.cpp44 std::complex<double> t2 = sinh(t1); local
45 std::complex<double> z(imag(t2), -real(t2));
H A Dtan.pass.cpp45 std::complex<double> t2 = tanh(t1); local
46 std::complex<double> z(imag(t2), -real(t2));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/intseq/intseq.general/
H A Dinteger_seq.pass.cpp74 auto t2 = extract ( tup, size2 ()); local
75 static_assert ( std::tuple_size<decltype(t2)>::value == size2::size (), "t2 size wrong");
76 assert ( t2 == std::make_tuple ( 10, 11 ));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.comparisons/
H A Dop_equal.fail.cpp38 T2 t2(Duration2(3000));
39 t1 == t2; local
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
H A Dtuple.by.type.pass.cpp29 auto t2 = std::tuple<int, std::string, int, cf> { 42, "Hi", 23, { 1,2 }}; local
31 assert ( std::get<std::string>(t2) == "Hi" );
32 assert (( std::get<cf>(t2) == cf{ 1,2 } ));
/ndk/sources/android/support/src/msun/
H A Dk_log.h90 double hfsq,s,z,R,w,t1,t2; local
96 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7)));
97 R = t2+t1;
H A Dk_logf.h29 float hfsq,s,z,R,w,t1,t2; local
35 t2= z*(Lg1+w*Lg3);
36 R = t2+t1;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.assign/
H A Dcopy_assign.pass.cpp29 T t2 = t; local
30 std::reference_wrapper<T> r2(t2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.cons/
H A Dcopy.pass.cpp55 test<char> t2 = t; local
59 test<wchar_t> t2 = t; local
66 test<char> t2 = t; local
73 test<wchar_t> t2 = t; local
78 test<char> t2 = t; local
82 test<wchar_t> t2 = t; local
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dassign.pass.cpp56 test<char> t2; local
57 t2 = t;
61 test<wchar_t> t2; local
62 t2 = t;
69 test<char> t2; local
70 t2 = t;
77 test<wchar_t> t2; local
78 t2 = t;
83 test<char> t2; local
84 t2
88 test<wchar_t> t2; local
[all...]
H A Dswap.pass.cpp66 test<char> t2; local
67 swap(t2, t);
71 test<wchar_t> t2; local
72 swap(t2, t);
79 test<char> t2; local
80 swap(t2, t);
87 test<wchar_t> t2; local
88 swap(t2, t);
93 test<char> t2; local
94 swap(t2,
98 test<wchar_t> t2; local
[all...]
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
H A Ddynamic_cast5.pass.cpp157 namespace t2 namespace
195 t2::A1* getA1() {return A3::getA1();}
208 t2::A1* getA1() {return A4::getA1();}
299 } // t2
1307 t2::test();
H A Ddynamic_cast3.pass.cpp72 namespace t2 namespace
121 } // t2
2414 t2::test();
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
H A Dbind.hpp201 typedef aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 > t2; typedef in struct:boost::mpl::bind2::apply
206 , typename t1::type, typename t2::type
264 typedef aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 > t2; typedef in struct:boost::mpl::bind3::apply
274 , typename t1::type, typename t2::type, typename t3::type
332 typedef aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 > t2; typedef in struct:boost::mpl::bind4::apply
347 , typename t1::type, typename t2::type, typename t3::type
407 typedef aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 > t2; typedef in struct:boost::mpl::bind5::apply
427 , typename t1::type, typename t2::type, typename t3::type
495 typedef aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 > t2; typedef in struct:boost::mpl::bind3::apply
504 , t2, t
543 typedef aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 > t2; typedef in struct:boost::mpl::bind3::apply
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
H A Dcallback.hpp46 R invoke( Functor& f, T1 t1, T2 t2 ) { return f( t1, t2 ); }
48 R invoke( Functor& f, T1 t1, T2 t2, T3 t3 ) { return f( t1, t2, t3 ); } argument
60 unused invoke( Functor& f, T1 t1, T2 t2 ) { f( t1, t2 ); return unused(); }
62 unused invoke( Functor& f, T1 t1, T2 t2, T3 t3 ) { f( t1, t2, t3 ); return unused(); } argument
195 virtual R invoke( T1 t1, T2 t2 ) = 0;
205 virtual R invoke( T1 t1, T2 t2 ) { retur
262 invoke( T1 t1, T2 t2, T3 t3 ) argument
291 operator ()( T1 t1, T2 t2, T3 t3 ) const argument
[all...]
/ndk/sources/cxx-stl/gabi++/tests/
H A Ddynamic_cast3.cpp71 namespace t2 namespace
120 } // t2
2422 t2::test();
H A Ddynamic_cast5.cpp156 namespace t2 namespace
194 t2::A1* getA1() {return A3::getA1();}
207 t2::A1* getA1() {return A4::getA1();}
298 } // t2
1314 t2::test();
H A Ddynamic_cast14.cpp733 namespace t2 namespace
1452 } // t2
2185 t2::test();

Completed in 823 milliseconds

123