HomeSort by relevance Sort by last modified time
    Searched defs:t1 (Results 51 - 75 of 1682) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/type.index/type.index.members/
lt.pass.cpp 24 std::type_index t1 = typeid(int); local
27 assert(!(t1 < t2));
28 assert( (t1 <= t2));
29 assert(!(t1 > t2));
30 assert( (t1 >= t2));
31 if (t1 < t3)
33 assert( (t1 < t3));
34 assert( (t1 <= t3));
35 assert(!(t1 > t3));
36 assert(!(t1 >= t3))
    [all...]
name.pass.cpp 23 std::type_index t1 = typeid(int); local
24 assert(std::string(t1.name()) == ti.name());
  /external/libcxx/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
  /external/llvm/test/MC/Mips/
asciiz-directive.s 4 t1: label
6 # CHECK-LABEL: t1
  /external/python/cpython2/Tools/faqwiz/
faqw.py 19 t1 = os.times() # If this doesn't work, just get rid of the timing code! variable
  /external/testng/src/test/java/test/junit4/
JUnit4Sample1.java 12 public void t1() { method in class:JUnit4Sample1
  /external/valgrind/none/tests/
sigsusp.c 17 pthread_t t1; local
19 pthread_create(&t1, NULL, t_fn, NULL);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.rtti/type.info/
type_info_hash.pass.cpp 18 const std::type_info& t1 = typeid(int); local
21 assert(t1.hash_code() == t2.hash_code());
22 assert(t1.hash_code() != t3.hash_code());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_swappable_include_order.pass.cpp 38 T t1 = {}; local
40 std::iter_swap(t1, t2);
41 std::swap_ranges(t1, t1 + 17, t2);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.clock/time.clock.hires/
now.pass.cpp 22 C::time_point t1 = C::now(); local
23 assert(t1.time_since_epoch().count() != 0);
24 assert(C::time_point::min() < t1);
25 assert(C::time_point::max() > t1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 24 C::time_point t1 = C::now(); local
26 assert(t2 >= t1);
  /prebuilts/ndk/r16/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);
now.pass.cpp 22 C::time_point t1 = C::now(); local
23 assert(t1.time_since_epoch().count() != 0);
24 assert(C::time_point::min() < t1);
25 assert(C::time_point::max() > t1);
to_time_t.pass.cpp 22 std::time_t t1 = C::to_time_t(C::now()); local
23 ((void)t1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 27 typedef std::tuple<long long, short> T1;
29 T1 t1; local
30 t1 = t0;
31 assert(std::get<0>(t1) == 2);
32 assert(std::get<1>(t1) == short('a'));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.special/
non_member_swap.pass.cpp 29 T t1; local
30 swap(t0, t1);
35 T t1(MoveOnly(1));
36 swap(t0, t1);
38 assert(std::get<0>(t1) == 0);
43 T t1(MoveOnly(2), MoveOnly(3));
44 swap(t0, t1);
47 assert(std::get<0>(t1) == 0);
48 assert(std::get<1>(t1) == 1);
53 T t1(MoveOnly(3), MoveOnly(4), MoveOnly(5))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.swap/
member_swap.pass.cpp 28 T t1; local
29 t0.swap(t1);
34 T t1(MoveOnly(1));
35 t0.swap(t1);
37 assert(std::get<0>(t1) == 0);
42 T t1(MoveOnly(2), MoveOnly(3));
43 t0.swap(t1);
46 assert(std::get<0>(t1) == 0);
47 assert(std::get<1>(t1) == 1);
52 T t1(MoveOnly(3), MoveOnly(4), MoveOnly(5))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/type.index/type.index.hash/
hash.pass.cpp 30 std::type_index t1 = typeid(int); local
31 assert(std::hash<std::type_index>()(t1) == t1.hash_code());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/type.index/type.index.members/
eq.pass.cpp 22 std::type_index t1 = typeid(int); local
25 assert(t1 == t2);
26 assert(t1 != t3);
hash_code.pass.cpp 22 std::type_index t1 = typeid(int); local
23 assert(t1.hash_code() == ti.hash_code());
lt.pass.cpp 24 std::type_index t1 = typeid(int); local
27 assert(!(t1 < t2));
28 assert( (t1 <= t2));
29 assert(!(t1 > t2));
30 assert( (t1 >= t2));
31 if (t1 < t3)
33 assert( (t1 < t3));
34 assert( (t1 <= t3));
35 assert(!(t1 > t3));
36 assert(!(t1 >= t3))
    [all...]
name.pass.cpp 23 std::type_index t1 = typeid(int); local
24 assert(std::string(t1.name()) == ti.name());

Completed in 558 milliseconds

1 23 4 5 6 7 8 91011>>