HomeSort by relevance Sort by last modified time
    Searched defs:t1 (Results 26 - 50 of 624) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/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());
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.clock/time.clock.hires/
now.pass.cpp 21 C::time_point t1 = C::now(); local
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 22 C::time_point t1 = C::now(); local
24 assert(t2 >= t1);
  /ndk/sources/cxx-stl/llvm-libc++/test/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
now.pass.cpp 21 C::time_point t1 = C::now(); local
to_time_t.pass.cpp 22 std::time_t t1 = C::to_time_t(C::now()); local
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 25 typedef std::tuple<int, short> T1;
27 T1 t1; local
28 t1 = t0;
29 assert(std::get<0>(t1) == 2);
30 assert(std::get<1>(t1) == short('a'));
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/tuple.cnstr/
const_pair.pass.cpp 24 typedef std::tuple<int, short> T1;
26 T1 t1 = t0; local
27 assert(std::get<0>(t1) == 2);
28 assert(std::get<1>(t1) == short('a'));
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/tuple.special/
non_member_swap.pass.cpp 27 T t1; local
28 swap(t0, t1);
33 T t1(MoveOnly(1));
34 swap(t0, t1);
36 assert(std::get<0>(t1) == 0);
41 T t1(MoveOnly(2), MoveOnly(3));
42 swap(t0, t1);
45 assert(std::get<0>(t1) == 0);
46 assert(std::get<1>(t1) == 1);
51 T t1(MoveOnly(3), MoveOnly(4), MoveOnly(5))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/tuple.swap/
member_swap.pass.cpp 26 T t1; local
27 t0.swap(t1);
32 T t1(MoveOnly(1));
33 t0.swap(t1);
35 assert(std::get<0>(t1) == 0);
40 T t1(MoveOnly(2), MoveOnly(3));
41 t0.swap(t1);
44 assert(std::get<0>(t1) == 0);
45 assert(std::get<1>(t1) == 1);
50 T t1(MoveOnly(3), MoveOnly(4), MoveOnly(5))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/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());
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p1.cpp 6 Tuple<int> *t1; variable
  /external/clang/test/CodeGen/
arm-vector-align.c 15 void t1(AlignedAddr *addr1, AlignedAddr *addr2) { function
16 // CHECK: @t1
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.cons/
assign_init.pass.cpp 24 const T t1[] = {10, 11, 12, 13}; local
25 C c(std::begin(t1), std::end(t1));
35 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
36 C c(std::begin(t1), std::end(t1));
assign_op_init.pass.cpp 24 const T t1[] = {10, 11, 12, 13}; local
25 C c(std::begin(t1), std::end(t1));
35 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
36 C c(std::begin(t1), std::end(t1));
assign_size_value.pass.cpp 23 const T t1[] = {10, 11, 12, 13}; local
24 C c(std::begin(t1), std::end(t1));
34 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
35 C c(std::begin(t1), std::end(t1));
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.forward/
iosfwd.pass.cpp 18 std::char_traits<char>* t1 = 0; local
23 std::basic_ios<char>* t1 = 0; local
28 std::basic_streambuf<char>* t1 = 0; local
33 std::basic_istream<char>* t1 = 0; local
38 std::basic_ostream<char>* t1 = 0; local
43 std::basic_iostream<char>* t1 = 0; local
48 std::basic_stringbuf<char>* t1 = 0; local
53 std::basic_istringstream<char>* t1 = 0; local
58 std::basic_ostringstream<char>* t1 = 0; local
63 std::basic_stringstream<char>* t1 = 0 local
68 std::basic_filebuf<char>* t1 = 0; local
73 std::basic_ifstream<char>* t1 = 0; local
78 std::basic_ofstream<char>* t1 = 0; local
83 std::basic_fstream<char>* t1 = 0; local
88 std::istreambuf_iterator<char>* t1 = 0; local
93 std::ostreambuf_iterator<char>* t1 = 0; local
98 std::ios* t1 = 0; local
102 std::streambuf* t1 = 0; local
108 std::stringbuf* t1 = 0; local
114 std::filebuf* t1 = 0; local
120 std::wstreambuf* t1 = 0; local
126 std::wstringbuf* t1 = 0; local
132 std::wfilebuf* t1 = 0; local
138 std::fpos<std::mbstate_t>* t1 = 0; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.point/time.point.cons/
convert.fail.cpp 28 std::chrono::time_point<Clock, Duration1> t1 = t2; local
convert.pass.cpp 27 std::chrono::time_point<Clock, Duration1> t1 = t2; local
28 assert(t1.time_since_epoch() == Duration1(3000));
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/tuple.creation/
tuple_cat.pass.cpp 30 std::tuple<> t1; local
31 std::tuple<> t2 = std::tuple_cat(t1);
41 std::tuple<int> t1(1);
42 std::tuple<int> t = std::tuple_cat(t1);
64 std::tuple<> t1; local
66 std::tuple<> t3 = std::tuple_cat(t1, t2);
69 std::tuple<> t1; local
71 std::tuple<int> t3 = std::tuple_cat(t1, t2);
75 std::tuple<> t1; local
77 std::tuple<int> t3 = std::tuple_cat(t2, t1);
81 std::tuple<int*> t1; local
88 std::tuple<int*> t1; local
95 std::tuple<int*> t1; local
103 std::tuple<int*> t1; local
    [all...]

Completed in 341 milliseconds

12 3 4 5 6 7 8 91011>>