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

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
issue21273.go 12 type T1 struct{ T1 } // ERROR "invalid recursive type"
13 type _ map[T1]int
  /prebuilts/go/linux-x86/test/fixedbugs/issue6295.dir/
p1.go 9 type T1 interface {
24 func NewT1() T1 {
  /prebuilts/go/linux-x86/test/
live1.go 24 // instruction in the wrapper methods generated for T1.M and (*T1).M,
32 type T1 struct {
  /prebuilts/go/linux-x86/test/method4.dir/
method4a.go 9 type T1 int
23 func (i T1) Sum(a []int, b int) int {
prog.go 11 type T1 int
25 func (i T1) Sum(a []int, b int) int {
49 t1 := T1(4)
52 eq(t1.Sum(a, 5), 15)
55 eq(T1.Sum(t1, a, 7), 17)
58 f1 := T1.Sum
59 eq(f1(t1, a, 9), 19)
63 eq(I1.Sum(t1, a, 11), 21
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/
types.pass.cpp 27 typedef std::defer_lock_t T1;
31 T1 t1 = std::defer_lock; ((void)t1); local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.point/time.point.comparisons/
op_equal.pass.cpp 32 typedef std::chrono::time_point<Clock, Duration1> T1;
36 T1 t1(Duration1(3));
37 T1 t2(Duration1(3));
38 assert( (t1 == t2));
39 assert(!(t1 != t2));
42 T1 t1(Duration1(3));
43 T1 t2(Duration1(4));
44 assert(!(t1 == t2))
    [all...]
op_less.fail.cpp 42 typedef std::chrono::time_point<Clock1, Duration1> T1;
45 T1 t1(Duration1(3));
47 t1 < t2;
op_less.pass.cpp 40 typedef std::chrono::time_point<Clock, Duration1> T1;
44 T1 t1(Duration1(3));
45 T1 t2(Duration1(3));
46 assert(!(t1 < t2));
47 assert(!(t1 > t2));
48 assert( (t1 <= t2));
49 assert( (t1 >= t2));
52 T1 t1(Duration1(3))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.traits/time.traits.specializations/
time_point.pass.cpp 25 typedef std::chrono::time_point<C, D1> T1;
28 typedef typename std::common_type<T1, T2>::type Tc;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 4 typedef int& T1;
10 mutable T1 f3; // expected-error{{'mutable' cannot be applied to references}}
  /external/clang/test/CXX/special/class.ctor/
p1.cpp 51 typedef int T1;
53 X3::X3(T1()); // expected-error {{extra qualification on member 'X3'}}
  /external/clang/test/CodeGenCXX/
weak-extern-typeinfo.cpp 17 class T1 {};
19 class C : public T1, public B, public T {
  /external/clang/test/Parser/
cxx-attributes.cpp 17 typedef int __attribute__((__aligned__(A))) T1;
18 int check1[__alignof__(T1) == 1 ? 1 : -1];
20 typedef int __attribute__((aligned(int(1)))) T1;
  /external/libcxx/test/std/utilities/time/time.point/time.point.cast/
time_point_cast.pass.cpp 78 typedef std::chrono::duration<int, std::ratio<3, 5>> T1;
79 test_constexpr<std::chrono::duration<int, std::ratio<2, 3>>, 9, T1, 10> ();
  /external/libcxx/test/std/utilities/time/time.point/time.point.comparisons/
op_equal.fail.cpp 34 typedef std::chrono::time_point<Clock1, Duration1> T1;
37 T1 t1(Duration1(3));
39 t1 == t2;
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
convert_copy.pass.cpp 40 typedef std::tuple<long long> T1;
42 T1 t1; local
43 t1 = t0;
44 assert(std::get<0>(t1) == 2);
48 typedef std::tuple<long long, int> T1;
50 T1 t1; local
51 t1 = t0;
52 assert(std::get<0>(t1) == 2)
59 T1 t1; local
    [all...]
move_pair.pass.cpp 43 typedef std::tuple<long long, std::unique_ptr<B>> T1;
45 T1 t1; local
46 t1 = std::move(t0);
47 assert(std::get<0>(t1) == 2);
48 assert(std::get<1>(t1)->id_ == 3);
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_convert_copy.pass.cpp 41 typedef std::tuple<long long> T1;
43 T1 t1(std::allocator_arg, A1<int>(), t0);
44 assert(std::get<0>(t1) == 2);
48 typedef std::tuple<alloc_first> T1;
51 T1 t1(std::allocator_arg, A1<int>(5), t0);
53 assert(std::get<0>(t1) == 2);
57 typedef std::tuple<alloc_first, alloc_last> T1;
61 T1 t1(std::allocator_arg, A1<int>(5), t0)
    [all...]
alloc_move_pair.pass.cpp 47 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1;
50 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
52 assert(std::get<0>(t1) == 2);
53 assert(std::get<1>(t1)->id_ == 3);
move_pair.pass.cpp 42 typedef std::tuple<long long, std::unique_ptr<B>> T1;
44 T1 t1 = std::move(t0); local
45 assert(std::get<0>(t1) == 2);
46 assert(std::get<1>(t1)->id_ == 3);
  /prebuilts/go/darwin-x86/test/
append.go 235 type T1 []int
244 t1 := T1{1}
246 verify("T1", append(t1, t2...), T1{1, 2})
cmp6.go 14 type T1 *int
46 var p1 T1
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug294.go 42 type T1 int
44 func (t T1) a(s string) I {
49 func (T1) b(s string) string {
74 var i I = T1(0)
issue7405.go 13 type T1 struct {
49 func F(a, b T1) bool {

Completed in 763 milliseconds

1 23 4 5 6 7 8 91011>>