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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gold/testsuite/
start_lib_test_2.c 25 extern void t2 (void);
28 t2 (void) function
thin_archive_test_1.cc 31 extern int t2();
36 return (t2() << 4) | 1;
start_lib_test_1.c 26 extern void t2 (void);
31 t2 ();
protected_3.cc 30 t2() function
protected_main_3.cc 28 t2() function
thin_archive_test_2.cc 34 t2() function
relro_test_main.cc 26 extern bool t2();
32 assert(t2());
weak_undef.h 24 extern int t2();
protected_main_1.cc 29 extern bool t2();
38 assert(t2());
  /external/libcxx/test/std/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/std/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/std/utilities/tuple/tuple.tuple/tuple.rel/
lt.pass.cpp 40 typedef std::tuple<> T2;
42 const T2 t2; local
43 assert(!(t1 < t2));
44 assert( (t1 <= t2));
45 assert(!(t1 > t2));
46 assert( (t1 >= t2));
50 typedef std::tuple<double> T2;
52 const T2 t2(1)
    [all...]
eq.pass.cpp 28 typedef std::tuple<> T2;
30 const T2 t2; local
31 assert(t1 == t2);
32 assert(!(t1 != t2));
36 typedef std::tuple<double> T2;
38 const T2 t2(1.1);
39 assert(!(t1 == t2));
40 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/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
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
GenericDoubleReferences.java 22 final T t2; field in class:GenericDoubleReferences
26 @Inject GenericDoubleReferences(T t, Thing a, T t2, Thing a2) {
29 this.t2 = t2;
  /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;

Completed in 741 milliseconds

1 2 3 4 5 6 7 8 91011>>