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

12 3 4 5

  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_convert_copy.pass.cpp 40 typedef std::tuple<long> T0;
42 T0 t0(2);
43 T1 t1(std::allocator_arg, A1<int>(), t0);
47 typedef std::tuple<int> T0;
49 T0 t0(2);
51 T1 t1(std::allocator_arg, A1<int>(5), t0);
56 typedef std::tuple<int, int> T0;
58 T0 t0(2, 3)
    [all...]
alloc_move_pair.pass.cpp 46 typedef std::pair<int, std::unique_ptr<D>> T0;
48 T0 t0(2, std::unique_ptr<D>(new D(3)));
50 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
move_pair.pass.cpp 41 typedef std::pair<long, std::unique_ptr<D>> T0;
43 T0 t0(2, std::unique_ptr<D>(new D(3)));
44 T1 t1 = std::move(t0);
alloc_convert_move.pass.cpp 56 typedef std::tuple<int> T0;
58 T0 t0(2);
60 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
65 typedef std::tuple<std::unique_ptr<D>> T0;
67 T0 t0(std::unique_ptr<D>(new D(3)));
68 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
72 typedef std::tuple<int, std::unique_ptr<D>> T0;
74 T0 t0(2, std::unique_ptr<D>(new D(3)))
    [all...]
convert_copy.pass.cpp 71 typedef std::tuple<long> T0;
73 T0 t0(2);
74 T1 t1 = t0;
79 typedef std::tuple<int> T0;
81 constexpr T0 t0(2);
82 constexpr T1 t1 = t0;
86 typedef std::tuple<int> T0;
88 constexpr T0 t0(2)
    [all...]
convert_move.pass.cpp 51 typedef std::tuple<long> T0;
53 T0 t0(2);
54 T1 t1 = std::move(t0);
58 typedef std::tuple<long, char> T0;
60 T0 t0(2, 'a');
61 T1 t1 = std::move(t0);
66 typedef std::tuple<long, char, D> T0;
68 T0 t0(2, 'a', D(3))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.assign/
convert_copy.pass.cpp 39 typedef std::tuple<long> T0;
41 T0 t0(2);
43 t1 = t0;
47 typedef std::tuple<long, char> T0;
49 T0 t0(2, 'a');
51 t1 = t0;
56 typedef std::tuple<long, char, D> T0;
58 T0 t0(2, 'a', D(3))
    [all...]
move_pair.pass.cpp 42 typedef std::pair<long, std::unique_ptr<D>> T0;
44 T0 t0(2, std::unique_ptr<D>(new D(3)));
46 t1 = std::move(t0);
convert_move.pass.cpp 50 typedef std::tuple<long> T0;
52 T0 t0(2);
54 t1 = std::move(t0);
58 typedef std::tuple<long, char> T0;
60 T0 t0(2, 'a');
62 t1 = std::move(t0);
67 typedef std::tuple<long, char, D> T0;
69 T0 t0(2, 'a', D(3))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_convert_copy.pass.cpp 40 typedef std::tuple<long> T0;
42 T0 t0(2);
43 T1 t1(std::allocator_arg, A1<int>(), t0);
47 typedef std::tuple<int> T0;
49 T0 t0(2);
51 T1 t1(std::allocator_arg, A1<int>(5), t0);
56 typedef std::tuple<int, int> T0;
58 T0 t0(2, 3)
    [all...]
alloc_move_pair.pass.cpp 46 typedef std::pair<int, std::unique_ptr<D>> T0;
48 T0 t0(2, std::unique_ptr<D>(new D(3)));
50 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
move_pair.pass.cpp 41 typedef std::pair<long, std::unique_ptr<D>> T0;
43 T0 t0(2, std::unique_ptr<D>(new D(3)));
44 T1 t1 = std::move(t0);
alloc_convert_move.pass.cpp 56 typedef std::tuple<int> T0;
58 T0 t0(2);
60 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
65 typedef std::tuple<std::unique_ptr<D>> T0;
67 T0 t0(std::unique_ptr<D>(new D(3)));
68 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
72 typedef std::tuple<int, std::unique_ptr<D>> T0;
74 T0 t0(2, std::unique_ptr<D>(new D(3)))
    [all...]
convert_copy.pass.cpp 71 typedef std::tuple<long> T0;
73 T0 t0(2);
74 T1 t1 = t0;
79 typedef std::tuple<int> T0;
81 constexpr T0 t0(2);
82 constexpr T1 t1 = t0;
86 typedef std::tuple<int> T0;
88 constexpr T0 t0(2)
    [all...]
convert_move.pass.cpp 51 typedef std::tuple<long> T0;
53 T0 t0(2);
54 T1 t1 = std::move(t0);
58 typedef std::tuple<long, char> T0;
60 T0 t0(2, 'a');
61 T1 t1 = std::move(t0);
66 typedef std::tuple<long, char, D> T0;
68 T0 t0(2, 'a', D(3))
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.delete/
p5.cpp 8 class T0; // expected-note {{forward declaration}}
9 void f0(T0 *a) { delete a; } // expected-warning {{deleting pointer to incomplete type}}
10 class T0 { ~T0(); };
  /external/clang/test/SemaTemplate/
anonymous-union.cpp 4 struct T0 {
11 struct T1 : public T0, public T { //expected-warning{{direct base 'T0' is inaccessible due to ambiguity:\n struct T1<struct A> -> struct T0\n struct T1<struct A> -> struct A -> struct T0}}
17 struct A : public T0 { };
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
convert_move.pass.cpp 50 typedef std::tuple<long> T0;
52 T0 t0(2);
54 t1 = std::move(t0);
58 typedef std::tuple<long, char> T0;
60 T0 t0(2, 'a');
62 t1 = std::move(t0);
67 typedef std::tuple<long, char, D> T0;
69 T0 t0(2, 'a', D(3))
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
d2.go 38 // T0 should be first.
39 type T0 struct{}
  /prebuilts/go/darwin-x86/test/
alias2.go 16 type T0 struct{}
20 type _ = T0
27 A0 = T0
38 func (T0) m1() {} // GCCGO_ERROR "previous"
39 func (*T0) m1() {} // ERROR "method redeclared: T0\.m1|redefinition of .m1."
40 func (A0) m1() {} // ERROR "T0\.m1 redeclared in this block|redefinition of .m1."
41 func (A0) m1() {} // ERROR "T0\.m1 redeclared in this block|redefinition of .m1."
45 var _ A0 = T0{}
46 var _ T0 = A0{
    [all...]
  /prebuilts/go/linux-x86/src/go/doc/testdata/
d2.go 38 // T0 should be first.
39 type T0 struct{}
  /prebuilts/go/linux-x86/test/
alias2.go 16 type T0 struct{}
20 type _ = T0
27 A0 = T0
38 func (T0) m1() {} // GCCGO_ERROR "previous"
39 func (*T0) m1() {} // ERROR "method redeclared: T0\.m1|redefinition of .m1."
40 func (A0) m1() {} // ERROR "T0\.m1 redeclared in this block|redefinition of .m1."
41 func (A0) m1() {} // ERROR "T0\.m1 redeclared in this block|redefinition of .m1."
45 var _ A0 = T0{}
46 var _ T0 = A0{
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_CalcCoef.c 56 /* t0 = 2 * Pi * Fc / Fs */
60 /* b2 = -0.5 * (2Q - D * t0) / (2Q + D * t0) */
61 /* b1 = (0.5 - b2) * (1 - coserr(t0)) */
71 /* the cosine of t0 is always close to 1.0. Instead of calculating the cosine */
103 LVM_INT32 T0;
114 LVM_INT16 t0; local
120 T0 = (LVM_INT32)Frequency * LVEQNB_TwoPiOnFsTable[Fs]; /* T0 = 2 * Pi * Fc / Fs */
133 Dt0 = D * (T0 >> 10)
305 LVM_INT16 t0; local
    [all...]
  /external/aac/libAACdec/src/
usacdec_acelp.h 137 USHORT T0[NB_SUBFR];
  /external/swiftshader/src/Renderer/
Vertex.hpp 30 T0 = 3,

Completed in 993 milliseconds

12 3 4 5