HomeSort by relevance Sort by last modified time
    Searched refs:t2 (Results 1 - 25 of 1323) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/utilities/type.index/type.index.overview/
copy_assign.pass.cpp 22 std::type_index t2(typeid(double));
23 assert(t2 != t1);
24 t2 = t1;
25 assert(t2 == t1);
copy_ctor.pass.cpp 22 std::type_index t2 = t1; local
23 assert(t2 == t1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.overview/
copy_assign.pass.cpp 22 std::type_index t2(typeid(double));
23 assert(t2 != t1);
24 t2 = t1;
25 assert(t2 == t1);
copy_ctor.pass.cpp 22 std::type_index t2 = t1; local
23 assert(t2 == t1);
  /external/libcxx/test/utilities/time/time.point/time.point.comparisons/
op_less.pass.cpp 39 typedef std::chrono::time_point<Clock, Duration2> T2;
43 T1 t2(Duration1(3));
44 assert(!(t1 < t2));
45 assert(!(t1 > t2));
46 assert( (t1 <= t2));
47 assert( (t1 >= t2));
51 T1 t2(Duration1(4));
52 assert( (t1 < t2));
53 assert(!(t1 > t2));
54 assert( (t1 <= t2));
    [all...]
op_equal.pass.cpp 31 typedef std::chrono::time_point<Clock, Duration2> T2;
35 T1 t2(Duration1(3));
36 assert( (t1 == t2));
37 assert(!(t1 != t2));
41 T1 t2(Duration1(4));
42 assert(!(t1 == t2));
43 assert( (t1 != t2));
47 T2 t2(Duration2(3000));
48 assert( (t1 == t2));
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.comparisons/
op_less.pass.cpp 39 typedef std::chrono::time_point<Clock, Duration2> T2;
43 T1 t2(Duration1(3));
44 assert(!(t1 < t2));
45 assert(!(t1 > t2));
46 assert( (t1 <= t2));
47 assert( (t1 >= t2));
51 T1 t2(Duration1(4));
52 assert( (t1 < t2));
53 assert(!(t1 > t2));
54 assert( (t1 <= t2));
    [all...]
op_equal.pass.cpp 31 typedef std::chrono::time_point<Clock, Duration2> T2;
35 T1 t2(Duration1(3));
36 assert( (t1 == t2));
37 assert(!(t1 != t2));
41 T1 t2(Duration1(4));
42 assert(!(t1 == t2));
43 assert( (t1 != t2));
47 T2 t2(Duration2(3000));
48 assert( (t1 == t2));
    [all...]
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/
lt.pass.cpp 38 typedef std::tuple<> T2;
40 const T2 t2; local
41 assert(!(t1 < t2));
42 assert( (t1 <= t2));
43 assert(!(t1 > t2));
44 assert( (t1 >= t2));
48 typedef std::tuple<double> T2;
50 const T2 t2(1)
    [all...]
eq.pass.cpp 26 typedef std::tuple<> T2;
28 const T2 t2; local
29 assert(t1 == t2);
30 assert(!(t1 != t2));
34 typedef std::tuple<double> T2;
36 const T2 t2(1.1);
37 assert(!(t1 == t2));
38 assert(t1 != t2);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/
lt.pass.cpp 38 typedef std::tuple<> T2;
40 const T2 t2; local
41 assert(!(t1 < t2));
42 assert( (t1 <= t2));
43 assert(!(t1 > t2));
44 assert( (t1 >= t2));
48 typedef std::tuple<double> T2;
50 const T2 t2(1)
    [all...]
eq.pass.cpp 26 typedef std::tuple<> T2;
28 const T2 t2; local
29 assert(t1 == t2);
30 assert(!(t1 != t2));
34 typedef std::tuple<double> T2;
36 const T2 t2(1.1);
37 assert(!(t1 == t2));
38 assert(t1 != t2);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_equal.c 42 pthread_equal (pthread_t t1, pthread_t t2)
46 * This function returns nonzero if t1 and t2 are equal, else
51 * t2
56 * This function returns nonzero if t1 and t2 are equal, else
60 * non-zero if t1 and t2 refer to the same thread,
61 * 0 t1 and t2 do not refer to the same thread
72 result = ( t1.p == t2.p && t1.x == t2.x );
  /external/clang/test/CodeCompletion/
documentation.cpp 8 class T2 {
22 T2 t2; local
23 t2.
28 // CHECK-CC1: COMPLETION: T2 : T2 : Bbb.
  /external/clang/test/CodeGen/
2006-01-16-BitCountIntrinsicsUnsigned.c 3 unsigned t2(unsigned X) { function
4 // CHECK: t2
attr-naked.c 14 // CHECK: define void @t2() [[NAKED]] {
15 __attribute((naked, always_inline)) void t2() { function
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
BounceInterpolator.java 34 float t2 = t - 6f / 11f; local
35 return SCALE_FACTOR * t2 * t2 + 3f / 4f;
37 float t2 = t - 9f / 11f; local
38 return SCALE_FACTOR * t2 * t2 + 15f / 16f;
  /external/libcxx/test/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 23 C::time_point t2 = C::now(); local
24 assert(t2 >= t1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 23 C::time_point t2 = C::now(); local
24 assert(t2 >= t1);
  /external/clang/test/PCH/
cxx-static_assert.cpp 19 T<2> t2; variable
  /external/clang/test/Sema/
attr-noduplicate.c 7 void t2() __attribute__((noduplicate(2))); // expected-error {{'noduplicate' attribute takes no arguments}}
attr-noinline.c 7 void t2() __attribute__((noinline(2))); // expected-error {{'noinline' attribute takes no arguments}}
  /external/libcxx/test/language.support/support.rtti/type.info/
type_info.pass.cpp 19 const std::type_info& t2 = typeid(int); local
20 assert(t1 == t2);
23 assert(!t1.before(t2));
24 assert(strcmp(t1.name(), t2.name()) == 0);
  /external/libcxx/test/re/re.traits/
default.pass.cpp 27 std::regex_traits<wchar_t> t2; local
28 assert(t2.getloc().name() == "C");
34 std::regex_traits<wchar_t> t2; local
35 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
getloc.pass.cpp 26 std::regex_traits<wchar_t> t2; local
27 assert(t2.getloc().name() == "C");
33 std::regex_traits<wchar_t> t2; local
34 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);

Completed in 2064 milliseconds

1 2 3 4 5 6 7 8 91011>>