HomeSort by relevance Sort by last modified time
    Searched refs:t1 (Results 101 - 125 of 2986) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.clock/time.clock.system/
from_time_t.pass.cpp 22 C::time_point t1 = C::from_time_t(C::to_time_t(C::now())); local
23 ((void)t1);
to_time_t.pass.cpp 22 std::time_t t1 = C::to_time_t(C::now()); local
23 ((void)t1);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
const_pair.pass.cpp 26 typedef std::tuple<int, short> T1;
28 T1 t1 = t0; local
29 assert(std::get<0>(t1) == 2);
30 assert(std::get<1>(t1) == short('a'));
35 typedef std::tuple<int, short> T1;
37 constexpr T1 t1 = p0; local
38 static_assert(std::get<0>(t1) != std::get<0>(p0), "");
39 static_assert(std::get<1>(t1) == std::get<1>(p0), "")
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.elem/
tuple.by.type2.fail.cpp 22 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } ); local
23 assert ( std::get<int>(t1) == 42 ); // two ints here
tuple.by.type3.fail.cpp 22 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } ); local
23 assert ( std::get<int>(t1) == 42 ); // two ints here (one at the end)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/type.index/type.index.members/
ctor.pass.cpp 23 std::type_index t1(info);
24 assert(t1.name() == info.name());
hash_code.pass.cpp 22 std::type_index t1 = typeid(int); local
23 assert(t1.hash_code() == ti.hash_code());
name.pass.cpp 23 std::type_index t1 = typeid(int); local
24 assert(std::string(t1.name()) == ti.name());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pair.astuple/
pairs.by.type1.fail.cpp 19 auto t1 = std::make_pair<int, double> ( 42, 3.4 ); local
20 assert (( std::get<cf>(t1) == cf {1,2} )); // no such type
pairs.by.type2.fail.cpp 19 auto t1 = std::make_pair<int, int> ( 42, 43 ); local
20 assert ( std::get<int>(t1) == 42 ); // two ints
  /art/runtime/interpreter/mterp/mips/
op_mul_long_2addr.S 10 GET_OPB(t1) # t1 <- B
11 EAS2(t1, rFP, t1) # t1 <- &fp[B]
12 LOAD64(a2, a3, t1) # vBB.low / high
17 muhu t1, a2, a0
20 mfhi t1
24 addu v1, v1, t1 # v1= a3a0 + hi(a2a0)
28 GET_INST_OPCODE(t1) # extract opcode from rINS
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
convert_move.pass.cpp 51 typedef std::tuple<long long> T1;
53 T1 t1; local
54 t1 = std::move(t0);
55 assert(std::get<0>(t1) == 2);
59 typedef std::tuple<long long, int> T1;
61 T1 t1; local
62 t1 = std::move(t0);
63 assert(std::get<0>(t1) == 2)
70 T1 t1; local
92 T1 t1; local
    [all...]
  /external/clang/test/CodeGen/
arm-fp16-arguments.c 7 void t1(__fp16 a) { g = a; } function
8 // SOFT: define void @t1(i32 [[PARAM:%.*]])
10 // HARD: define arm_aapcs_vfpcc void @t1(float [[PARAM:%.*]])
14 // NATIVE: define void @t1(half [[PARAM:%.*]])
  /external/clang/test/PCH/
cxx-static_assert.cpp 18 T<1> t1; // expected-note {{in instantiation of template class 'T<1>' requested here}} variable
  /external/clang/test/Sema/
attr-noduplicate.c 5 void t1() __attribute__((noduplicate));
attr-noinline.c 5 void t1() __attribute__((noinline));
  /external/libcxx/test/std/re/re.traits/
default.pass.cpp 28 std::regex_traits<char> t1; local
29 assert(t1.getloc().name() == "C");
35 std::regex_traits<char> t1; local
36 assert(t1.getloc().name() == LOCALE_en_US_UTF_8);
getloc.pass.cpp 27 std::regex_traits<char> t1; local
28 assert(t1.getloc().name() == "C");
34 std::regex_traits<char> t1; local
35 assert(t1.getloc().name() == LOCALE_en_US_UTF_8);
  /external/libcxx/test/std/utilities/ratio/ratio.ratio/
ratio1.fail.cpp 17 const std::intmax_t t1 = std::ratio<1, 0>::num; local
ratio2.fail.cpp 18 const std::intmax_t t1 = std::ratio<0x8000000000000000ULL, 1>::num; local
ratio3.fail.cpp 18 const std::intmax_t t1 = std::ratio<1, 0x8000000000000000ULL>::num; local
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_convert_copy.fail.cpp 29 const std::tuple<int> t1(42);
30 return {std::allocator_arg, std::allocator<void>{}, t1};
35 std::tuple<int> t1(42);
36 return {std::allocator_arg, std::allocator<void>{}, t1};
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
default.pass.cpp 25 std::regex_traits<char> t1; local
26 assert(t1.getloc().name() == "C");
32 std::regex_traits<char> t1; local
33 assert(t1.getloc().name() == LOCALE_en_US_UTF_8);
getloc.pass.cpp 24 std::regex_traits<char> t1; local
25 assert(t1.getloc().name() == "C");
31 std::regex_traits<char> t1; local
32 assert(t1.getloc().name() == LOCALE_en_US_UTF_8);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/ratio/ratio.ratio/
ratio1.fail.cpp 17 const std::intmax_t t1 = std::ratio<1, 0>::num; local

Completed in 337 milliseconds

1 2 3 45 6 7 8 91011>>