/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/ |
D | tuple_cat.pass.cpp | 92 std::tuple<> t3 = std::tuple_cat(t1, t2); in main() local 97 std::tuple<int> t3 = std::tuple_cat(t1, t2); in main() local 98 assert(std::get<0>(t3) == 2); in main() 103 std::tuple<int> t3 = std::tuple_cat(t2, t1); in main() local 104 assert(std::get<0>(t3) == 2); in main() 109 std::tuple<int*, int> t3 = std::tuple_cat(t1, t2); in main() local 110 assert(std::get<0>(t3) == nullptr); in main() 111 assert(std::get<1>(t3) == 2); in main() 116 std::tuple<int, int*> t3 = std::tuple_cat(t2, t1); in main() local 117 assert(std::get<0>(t3) == 2); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.forward/ |
D | iosfwd.pass.cpp | 20 std::char_traits<unsigned short>* t3 = 0; in main() local 25 std::basic_ios<unsigned short>* t3 = 0; in main() local 30 std::basic_streambuf<unsigned short>* t3 = 0; in main() local 35 std::basic_istream<unsigned short>* t3 = 0; in main() local 40 std::basic_ostream<unsigned short>* t3 = 0; in main() local 45 std::basic_iostream<unsigned short>* t3 = 0; in main() local 50 std::basic_stringbuf<unsigned short>* t3 = 0; in main() local 55 std::basic_istringstream<unsigned short>* t3 = 0; in main() local 60 std::basic_ostringstream<unsigned short>* t3 = 0; in main() local 65 std::basic_stringstream<unsigned short>* t3 = 0; in main() local [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/ |
D | lt.pass.cpp | 26 std::type_index t3 = typeid(long); in main() local 31 if (t1 < t3) in main() 33 assert( (t1 < t3)); in main() 34 assert( (t1 <= t3)); in main() 35 assert(!(t1 > t3)); in main() 36 assert(!(t1 >= t3)); in main() 40 assert(!(t1 < t3)); in main() 41 assert(!(t1 <= t3)); in main() 42 assert( (t1 > t3)); in main() 43 assert( (t1 >= t3)); in main()
|
D | eq.pass.cpp | 24 std::type_index t3 = typeid(long); in main() local 26 assert(t1 != t3); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/ |
D | merge.pass.cpp | 27 const T t3[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; in main() local 31 C c3(std::begin(t3), std::end(t3)); in main() 40 const T t3[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; in main() local 44 C c3(std::begin(t3), std::end(t3)); in main()
|
D | merge_pred.pass.cpp | 28 const T t3[] = {15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}; in main() local 32 C c3(std::begin(t3), std::end(t3)); in main() 41 const T t3[] = {15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}; in main() local 45 C c3(std::begin(t3), std::end(t3)); in main()
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | sort | 23 ."t3 := \$(t2) \$(t2) \$(t2) \$(t2) \$(t2) \$(t2) \$(t2) \$(t2) \$(t2) \$(t2) \n" 24 ."t4 := \$(t3) \$(t3) \$(t3) \$(t3) \$(t3) \$(t3) \$(t3) \$(t3) \$(t3) \$(t3) \n"
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/type.info/ |
D | type_info.pass.cpp | 21 const std::type_info& t3 = typeid(short); in main() local 22 assert(t1 != t3); in main() 25 assert(strcmp(t1.name(), t3.name()) != 0); in main()
|
D | type_info_hash.pass.cpp | 20 const std::type_info& t3 = typeid(short); in main() local 22 assert(t1.hash_code() != t3.hash_code()); in main()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
D | callback.hpp | 48 R invoke( Functor& f, T1 t1, T2 t2, T3 t3 ) { return f( t1, t2, t3 ); } in invoke() 62 unused invoke( Functor& f, T1 t1, T2 t2, T3 t3 ) { f( t1, t2, t3 ); return unused(); } in invoke() 252 virtual R invoke( T1 t1, T2 t2, T3 t3 ) = 0; 262 virtual R invoke( T1 t1, T2 t2, T3 t3 ) { return invoker<R>().invoke( m_f, t1, t2, t3 ); } in invoke() 291 R operator()( T1 t1, T2 t2, T3 t3 ) const { return m_impl->invoke( t1, t2, t3 ); } in operator ()()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.nonmember/ |
D | op_+.pass.cpp | 42 constexpr std::chrono::time_point<Clock, Duration2> t3 = Duration2(6) + t1; in main() local 43 static_assert(t3.time_since_epoch() == Duration2(3006), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/intseq/intseq.general/ |
D | integer_seq.pass.cpp | 62 auto t3 = extract ( tup, int3() ); in main() local 63 static_assert ( std::tuple_size<decltype(t3)>::value == int3::size (), "t3 size wrong"); in main() 64 assert ( t3 == std::make_tuple ( 10, 11, 12 )); in main()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/ |
D | bind.hpp | 269 typedef aux::resolve_bind_arg< a3,U1,U2,U3,U4,U5 > t3; typedef 274 , typename t1::type, typename t2::type, typename t3::type 337 typedef aux::resolve_bind_arg< a3,U1,U2,U3,U4,U5 > t3; typedef 347 , typename t1::type, typename t2::type, typename t3::type 412 typedef aux::resolve_bind_arg< a3,U1,U2,U3,U4,U5 > t3; typedef 427 , typename t1::type, typename t2::type, typename t3::type 500 typedef aux::resolve_bind_arg< a3,U1,U2,U3,U4,U5 > t3; typedef 504 , t2, t3 548 typedef aux::resolve_bind_arg< a3,U1,U2,U3,U4,U5 > t3; typedef 552 , t2, t3
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/ |
D | types.pass.cpp | 31 T3 t3 = std::adopt_lock; in main() local
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/ |
D | placeholders.pass.cpp | 21 T t3 = t; in test() local
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | factor.sed | 37 t3
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
D | features.h | 1023 # define _STLP_PSPEC3(t1,t2,t3) < t1,t2,t3 > argument 1026 # define _STLP_PSPEC3(t1,t2,t3) /* nothing */ argument
|
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest-printers_test.cc | 1001 tuple<bool, int, int> t3(false, 2, 3); in TEST() local 1002 EXPECT_EQ("(false, 2, 3)", Print(t3)); in TEST()
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/ |
D | dynamic_cast5.cpp | 300 namespace t3 namespace 1312 t3::test(); in main()
|
D | dynamic_cast3.cpp | 122 namespace t3 namespace 2420 t3::test(); in main()
|
D | dynamic_cast14.cpp | 1454 namespace t3 namespace 2186 t3::test(); in main()
|
/ndk/sources/cxx-stl/gabi++/tests/ |
D | dynamic_cast5.cpp | 300 namespace t3 namespace 1315 t3::test(); in main()
|
D | dynamic_cast3.cpp | 122 namespace t3 namespace 2423 t3::test(); in main()
|
D | dynamic_cast14.cpp | 1454 namespace t3 namespace 2186 t3::test(); in main()
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | cxa_demangle.cpp | 3660 const char* t3 = parse_expression(t2, last, db); in parse_expression() local 3661 if (t3 != t2) in parse_expression() 3671 first = t3; in parse_expression()
|