Searched refs:T0 (Results 1 - 25 of 74) sorted by relevance

123

/external/clang/test/Sema/
H A DPR2919-builtin-types-compat-strips-crv.c3 typedef struct foo T0; typedef in typeref:struct:foo
6 int a0[__builtin_types_compatible_p(T0,
/external/clang/test/CodeGen/
H A Dbitfield-init.c13 typedef union T0 { char field0 : 2; } T0; typedef in typeref:union:T0
14 T0 T0_values = { 0 };
H A Dstruct-passing.c7 typedef int T0; typedef
10 T0 __attribute__((const)) f0(void);
11 T0 __attribute__((pure)) f1(void);
H A Dunion.c43 typedef union T0 { unsigned int : 0; } T0; typedef in typeref:union:T0
44 T0 t0;
/external/clang/test/Layout/
H A Dms-x86-misalignedarray.cpp6 struct T0 { char c; }; struct
7 struct T2 : virtual T0 { };
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp10.cpp3 typedef const int T0; typedef
8 mutable T0 f1; // expected-error{{'mutable' and 'const' cannot be mixed}}
/external/clang/test/SemaCXX/
H A DPR10243.cpp5 struct T0 { struct
7 T0() = default;
/external/clang/test/Modules/Inputs/
H A Dlinkage-merge-sub.h11 typedef int T0; typedef
/external/clang/test/SemaTemplate/
H A Danonymous-union.cpp4 struct T0 { struct
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/
H A Dconst_pair.pass.cpp26 typedef std::pair<double, char> T0; typedef
28 T0 t0(2.5, 'a');
H A Dconvert_copy.pass.cpp39 typedef std::tuple<double> T0; typedef
41 T0 t0(2.5);
47 typedef std::tuple<double, char> T0; typedef
49 T0 t0(2.5, 'a');
56 typedef std::tuple<double, char, D> T0; typedef
58 T0 t0(2.5, 'a', D(3));
68 typedef std::tuple<double, char, D&> T0; typedef
70 T0 t0(2.5, 'a', d2);
H A Dconvert_move.pass.cpp43 typedef std::tuple<double> T0; typedef
45 T0 t0(2.5);
51 typedef std::tuple<double, char> T0; typedef
53 T0 t0(2.5, 'a');
60 typedef std::tuple<double, char, D> T0; typedef
62 T0 t0(2.5, 'a', D(3));
72 typedef std::tuple<double, char, D&> T0; typedef
74 T0 t0(2.5, 'a', d2);
82 typedef std::tuple<double, char, std::unique_ptr<D>> T0; typedef
84 T0 t
[all...]
H A Dmove_pair.pass.cpp42 typedef std::pair<double, std::unique_ptr<D>> T0; typedef
44 T0 t0(2.5, std::unique_ptr<D>(new D(3)));
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dalloc_convert_copy.pass.cpp29 typedef std::tuple<double> T0; typedef
31 T0 t0(2.5);
36 typedef std::tuple<int> T0; typedef
38 T0 t0(2);
45 typedef std::tuple<int, int> T0; typedef
47 T0 t0(2, 3);
57 typedef std::tuple<double, int, int> T0; typedef
59 T0 t0(1.5, 2, 3);
H A Dconvert_copy.pass.cpp59 typedef std::tuple<double> T0; typedef
61 T0 t0(2.5);
67 typedef std::tuple<double> T0; typedef
69 constexpr T0 t0(2.5);
74 typedef std::tuple<int> T0; typedef
76 constexpr T0 t0(2);
82 typedef std::tuple<double, char> T0; typedef
84 T0 t0(2.5, 'a');
90 typedef std::tuple<double, char, D> T0; typedef
92 T0 t
100 typedef std::tuple<double, char, D&> T0; typedef
110 typedef std::tuple<double, char, int> T0; typedef
[all...]
H A Dconvert_move.pass.cpp41 typedef std::tuple<double> T0; typedef
43 T0 t0(2.5);
48 typedef std::tuple<double, char> T0; typedef
50 T0 t0(2.5, 'a');
56 typedef std::tuple<double, char, D> T0; typedef
58 T0 t0(2.5, 'a', D(3));
66 typedef std::tuple<double, char, D&> T0; typedef
68 T0 t0(2.5, 'a', d);
76 typedef std::tuple<double, char, std::unique_ptr<D>> T0; typedef
78 T0 t
[all...]
H A Dalloc_convert_move.pass.cpp46 typedef std::tuple<int> T0; typedef
48 T0 t0(2);
55 typedef std::tuple<std::unique_ptr<D>> T0; typedef
57 T0 t0(std::unique_ptr<D>(new D(3)));
62 typedef std::tuple<int, std::unique_ptr<D>> T0; typedef
64 T0 t0(2, std::unique_ptr<D>(new D(3)));
72 typedef std::tuple<int, int, std::unique_ptr<D>> T0; typedef
74 T0 t0(1, 2, std::unique_ptr<D>(new D(3)));
H A Dalloc_const_pair.pass.cpp30 typedef std::pair<double, int> T0; typedef
32 T0 t0(2, 3);
38 typedef std::pair<int, int> T0; typedef
40 T0 t0(2, 3);
48 typedef std::pair<int, int> T0; typedef
50 T0 t0(2, 3);
H A Dmove_pair.pass.cpp41 typedef std::pair<double, std::unique_ptr<D>> T0; typedef
43 T0 t0(2.5, std::unique_ptr<D>(new D(3)));
H A Dalloc_move_pair.pass.cpp46 typedef std::pair<int, std::unique_ptr<D>> T0; typedef
48 T0 t0(2, std::unique_ptr<D>(new D(3)));
H A Dconst_pair.pass.cpp25 typedef std::pair<double, char> T0; typedef
27 T0 t0(2.5, 'a');
/external/clang/test/CXX/expr/expr.unary/expr.delete/
H A Dp5.cpp8 class T0; // expected-note {{forward declaration}}
9 void f0(T0 *a) { delete a; } // expected-warning {{deleting pointer to incomplete type}}
10 class T0 { ~T0(); }; class
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffJacobian.h23 template<typename T0>
24 AutoDiffJacobian(const T0& a0) : Functor(a0) {}
25 template<typename T0, typename T1>
26 AutoDiffJacobian(const T0& a0, const T1& a1) : Functor(a0, a1) {}
27 template<typename T0, typename T1, typename T2>
28 AutoDiffJacobian(const T0& a0, const T1& a1, const T2& a2) : Functor(a0, a1, a2) {}
/external/eigen/unsupported/Eigen/src/NumericalDiff/
H A DNumericalDiff.h49 template<typename T0>
50 NumericalDiff(const T0& a0) : Functor(a0), epsfcn(0) {}
51 template<typename T0, typename T1>
52 NumericalDiff(const T0& a0, const T1& a1) : Functor(a0, a1), epsfcn(0) {}
53 template<typename T0, typename T1, typename T2>
54 NumericalDiff(const T0& a0, const T1& a1, const T2& a2) : Functor(a0, a1, a2), epsfcn(0) {}
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java113 private static final int[] T0 = field in class:AESEngine
483 r0 = T0[t0&255] ^ shift(T0[(t1>>8)&255], 24) ^ shift(T0[(t2>>16)&255], 16) ^ shift(T0[(r3>>24)&255], 8) ^ KW[r][0];
484 r1 = T0[t1&255] ^ shift(T0[(t2>>8)&255], 24) ^ shift(T0[(r3>>16)&255], 16) ^ shift(T0[(t0>>24)&255], 8) ^ KW[r][1];
485 r2 = T0[t
[all...]

Completed in 405 milliseconds

123