Searched refs:A0 (Results 1 - 25 of 122) sorted by relevance

12345

/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
H A Dp6.cpp4 struct A0 { struct
8 template<int X, int Y> void f0(A0<X, Y>) { } // expected-note{{previous}}
9 template<int N, int M> void f0(A0<M, N>) { }
10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}}
12 template<int X, int Y> void f1(A0<0, (X + Y)>) { } // expected-note{{previous}}
13 template<int X, int Y> void f1(A0<0, (X - Y)>) { }
14 template<int A, int B> void f1(A0<0, (A + B)>) { } // expected-error{{redefinition}}
16 template<int X, int Y> void A0<X, Y>::g0() { }
/external/mockito/src/main/java/org/mockito/stubbing/
H A DVoidAnswer1.java30 * @param <A0> type of the single argument
34 public interface VoidAnswer1<A0> {
40 void answer(A0 argument0) throws Throwable;
H A DAnswer1.java31 * @param <A0> type of the single argument
35 public interface Answer1<T, A0> {
43 T answer(A0 argument0) throws Throwable;
H A DAnswer2.java31 * @param <A0> type of the first argument
36 public interface Answer2<T, A0, A1> {
45 T answer(A0 argument0, A1 argument1) throws Throwable;
H A DVoidAnswer2.java30 * @param <A0> type of the first argument
35 public interface VoidAnswer2<A0, A1> {
42 void answer(A0 argument0, A1 argument1) throws Throwable;
H A DVoidAnswer3.java30 * @param <A0> type of the first argument
36 public interface VoidAnswer3<A0, A1, A2> {
44 void answer(A0 argument0, A1 argument1, A2 argument2) throws Throwable;
H A DAnswer3.java31 * @param <A0> type of the first argument
37 public interface Answer3<T, A0, A1, A2> {
47 T answer(A0 argument0, A1 argument1, A2 argument2) throws Throwable;
H A DAnswer4.java31 * @param <A0> type of the first argument
38 public interface Answer4<T, A0, A1, A2, A3> {
49 T answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3) throws Throwable;
H A DAnswer5.java31 * @param <A0> type of the first argument
38 public interface Answer5<T, A0, A1, A2, A3, A4> {
50 T answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3, A4 argument4) throws Throwable;
H A DVoidAnswer4.java30 * @param <A0> type of the first argument
37 public interface VoidAnswer4<A0, A1, A2, A3> {
46 void answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3) throws Throwable;
H A DVoidAnswer5.java30 * @param <A0> type of the first argument
38 public interface VoidAnswer5<A0, A1, A2, A3, A4> {
48 void answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3, A4 argument4) throws Throwable;
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
H A Ddestroy.pass.cpp50 struct A0 struct
53 ~A0() {++count;}
56 int A0::count = 0;
61 A0::count = 0;
63 std::aligned_storage<sizeof(A0)>::type a0;
64 std::allocator_traits<A<int> >::construct(a, (A0*)&a0);
65 assert(A0::count == 0);
66 std::allocator_traits<A<int> >::destroy(a, (A0*)&a0);
67 assert(A0::count == 1);
78 A0
[all...]
H A Dconstruct.pass.cpp52 struct A0 struct
55 A0() {++count;} function in struct:A0
58 int A0::count = 0;
88 A0::count = 0;
90 std::aligned_storage<sizeof(A0)>::type a0;
91 assert(A0::count == 0);
92 std::allocator_traits<A<int> >::construct(a, (A0*)&a0);
93 assert(A0::count == 1);
120 A0::count = 0;
123 std::aligned_storage<sizeof(A0)>
[all...]
/external/clang/test/CodeGen/
H A Dpr5406.c5 typedef struct { char x[3]; } A0; typedef in typeref:struct:__anon2602
12 A0 a3;
/external/clang/INPUTS/
H A Dmacro_pounder_obj.c6 #define A0 a b macro
7 #define A1 A0 A0 A0 A0 A0 A0
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_nothrow_constructible.pass.cpp27 template <class T, class A0>
30 static_assert(( std::is_nothrow_constructible<T, A0>::value), "");
32 static_assert(( std::is_nothrow_constructible_v<T, A0>), "");
45 template <class T, class A0>
48 static_assert((!std::is_nothrow_constructible<T, A0>::value), "");
50 static_assert((!std::is_nothrow_constructible_v<T, A0>), "");
54 template <class T, class A0, class A1>
57 static_assert((!std::is_nothrow_constructible<T, A0, A1>::value), "");
59 static_assert((!std::is_nothrow_constructible_v<T, A0, A1>), "");
H A Dis_trivially_constructible.pass.cpp27 template <class T, class A0>
30 static_assert(( std::is_trivially_constructible<T, A0>::value), "");
32 static_assert(( std::is_trivially_constructible_v<T, A0>), "");
45 template <class T, class A0>
48 static_assert((!std::is_trivially_constructible<T, A0>::value), "");
50 static_assert((!std::is_trivially_constructible_v<T, A0>), "");
54 template <class T, class A0, class A1>
57 static_assert((!std::is_trivially_constructible<T, A0, A1>::value), "");
59 static_assert((!std::is_trivially_constructible_v<T, A0, A1>), "");
H A Dis_constructible.pass.cpp90 template <class T, class A0>
93 static_assert(( std::is_constructible<T, A0>::value), "");
94 LIBCPP11_STATIC_ASSERT((std::__libcpp_is_constructible<T, A0>::type::value), "");
96 static_assert(( std::is_constructible_v<T, A0>), "");
100 template <class T, class A0, class A1>
103 static_assert(( std::is_constructible<T, A0, A1>::value), "");
104 LIBCPP11_STATIC_ASSERT((std::__libcpp_is_constructible<T, A0, A1>::type::value), "");
106 static_assert(( std::is_constructible_v<T, A0, A1>), "");
110 template <class T, class A0, class A1, class A2>
113 static_assert(( std::is_constructible<T, A0, A
[all...]
/external/clang/test/Index/
H A Dannotate-comments-preprocessor.c14 #define A0 0 macro
22 int A[] = { A0, A1, A2, A3, A4, A5, A6 };
24 #if A0 /** Aaa. */
/external/eigen/test/
H A Dinplace_decomposition.cpp37 MatrixType A0 = A; local
43 VERIFY_IS_NOT_APPROX( A, A0 );
48 VERIFY_IS_APPROX( A0 * (x = dec.solve(b)), b );
52 VERIFY_IS_APPROX( A0.transpose() * A0 * (x = dec.solve(b)), A0.transpose() * b );
59 VERIFY_IS_NOT_APPROX( A0 * (x = dec.solve(b)), b );
63 VERIFY_IS_NOT_APPROX( A0.transpose() * A0 * (x = dec.solve(b)), A0
[all...]
/external/fec/
H A Dencode_rs.h30 #undef A0 macro
31 #define A0 (NN) /* Special reserved value encoding zero in index form */ macro
41 if(feedback != A0){ /* feedback term is non-zero */
53 if(feedback != A0)
H A Ddecode_rs.h68 #undef A0 macro
69 #define A0 (NN) macro
119 if(tmp != A0)
136 if (reg[j] != A0) {
173 if ((lambda[i] != 0) && (s[r-i-1] != A0)) {
178 if (discr_r == A0) {
181 b[0] = A0;
186 if(b[i] != A0)
198 b[i] = (lambda[i] == 0) ? A0 : MODNN(INDEX_OF[lambda[i]] - discr_r + NN);
202 b[0] = A0;
[all...]
/external/eigen/doc/examples/
H A DTutorialInplaceLU.cpp30 MatrixXd A0(2,2); A0 << 2, -1, 1, 3;
33 cout << "Residual: " << (A0 * x - b).norm() << endl;
39 cout << "Residual: " << (A0 * x - b).norm() << endl;
43 A0 = A; // save A
46 cout << "Residual: " << (A0 * x - b).norm() << endl;
/external/libcxx/test/libcxx/utilities/function.objects/func.require/
H A Dbullet_7.pass.cpp63 template <class A0>
64 void*& freeFunction03(A0&) {
65 return FunctionPtrID<void*&(A0&), freeFunction03>::setUncheckedCall();
69 template <class A0>
70 void*& freeFunction03(A0&, ...) {
71 return FunctionPtrID<void*&(A0&, ...), freeFunction03>::setUncheckedCall();
74 template <class A0, class A1>
75 void*& freeFunction03(A0&, A1&) {
76 return FunctionPtrID<void*&(A0&, A1&), freeFunction03>::setUncheckedCall();
80 template <class A0, clas
[all...]
/external/clang/test/Analysis/
H A DNewDeleteLeaks-PR19102.cpp3 class A0 {}; class
26 new A0; // expected-warning@+1 {{Potential memory leak}}

Completed in 526 milliseconds

12345