Searched refs:A1 (Results 1 - 25 of 73) sorted by relevance

123

/external/clang/test/CodeGenCXX/
H A Ddefault-arguments.cpp15 struct A1 { struct
16 A1();
17 ~A1();
26 B(const A1& = A1(), const A2& = A2());
H A Dvtt-layout.cpp26 class A1 { int i; }; class in namespace:Test3
28 class V1 : public A1, public A2 { int i; };
45 class A1 { int i; }; class in namespace:Test4
47 class V1 : public A1, public virtual A2 { int i; };
/external/clang/test/SemaCXX/
H A Dambiguous-builtin-unary-operator.cpp23 struct A1 { operator volatile int&(); }; struct
27 struct C1 : B1, A1 { };
H A Dnamespace-alias.cpp30 namespace A1 { } namespace in namespace:H
33 // These all point to A1.
34 namespace B = A1; // expected-note {{previous definition is here}}
35 namespace B = A1;
43 namespace A1 { int i; } namespace in namespace:I
45 namespace A2 = A1;
H A Dwarn-reorder-ctor-initialization.cpp57 struct A1 { struct
58 A1();
65 struct F : public A1, public B1, private virtual V {
66 F() : A1(), V() { } // expected-warning {{base class 'A1' will be initialized after base 'V'}}
H A Dconversion-function.cpp121 struct A1 { struct
122 A1(const char *);
123 ~A1();
126 A1(const A1&); // expected-note 2 {{declared private here}}
129 A1 f() {
/external/clang/test/SemaTemplate/
H A Dinstantiate-function-params.cpp34 template<typename R, typename A1> struct X0<R(A1 param)> { };
36 template<typename T, typename A1, typename A2>
37 void instF0(X0<T(A1)> x0a, X0<T(A2)> x0b) {
38 X0<T(A1)> x0c;
44 template<typename R, typename A1, R (*ptr)(A1)> struct FuncPtr { };
45 template<typename A1, int (*ptr)(A1)> struct FuncPtr<int, A1, pt
[all...]
H A Dtemp_arg_type.cpp38 template<typename T> struct A1 { }; struct
39 A1<Array<int, 17>::type> ax;
H A Ddependent-base-member-init.cpp8 class A1 { class
9 A1(int x) {} function in class:A1
11 template<class C> class B1 : public A1 {
12 B1(C x) : A1(x.x) {}
H A Dtemp_class_spec.cpp258 template<typename T, typename Class, typename A1>
259 struct is_member_function_pointer<T (Class::*)(A1)> {
263 template<typename T, typename Class, typename A1>
264 struct is_member_function_pointer<T (Class::*)(A1) const> {
268 template<typename T, typename Class, typename A1>
269 struct is_member_function_pointer<T (Class::*)(A1) volatile> {
273 template<typename T, typename Class, typename A1>
274 struct is_member_function_pointer<T (Class::*)(A1) const volatile> {
/external/clang/INPUTS/
H A Dmacro_pounder_obj.c7 #define A1 A0 A0 A0 A0 A0 A0 macro
8 #define A2 A1 A1 A1 A1 A1 A1
H A Dmacro_pounder_fn.c7 #define A1(A, B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) macro
8 #define A2(A, B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) A1(A,B)
/external/chromium/testing/gmock/include/gmock/internal/
H A Dgmock-generated-internal-utils.h74 template <typename A1>
75 struct MatcherTuple< ::std::tr1::tuple<A1> > {
76 typedef ::std::tr1::tuple<Matcher<A1> > type;
79 template <typename A1, typename A2>
80 struct MatcherTuple< ::std::tr1::tuple<A1, A2> > {
81 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2> > type;
84 template <typename A1, typename A2, typename A3>
85 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3> > {
86 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3> > type;
89 template <typename A1, typenam
[all...]
/external/chromium/testing/
H A Dgmock_mutant.h1085 template <typename R, typename T, typename U, typename A1>
1086 inline MutantFunctor<R, Tuple1<A1> >
1087 CreateFunctor(T* obj, R (U::*method)(A1)) {
1088 MutantRunner<R, Tuple1<A1> >* t =
1089 new Mutant<R, T, R (U::*)(A1),
1090 Tuple0, Tuple1<A1> >
1092 return MutantFunctor<R, Tuple1<A1> >(t);
1095 template <typename R, typename A1>
1096 inline MutantFunctor<R, Tuple1<A1> >
1097 CreateFunctor(R (*function)(A1)) {
[all...]
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-generated-nice-strict.h79 template <typename A1>
80 explicit NiceMock(const A1& a1) : MockClass(a1) {
84 template <typename A1, typename A2>
85 NiceMock(const A1& a1, const A2& a2) : MockClass(a1, a2) {
90 template <typename A1, typename A2, typename A3>
91 NiceMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) {
96 template <typename A1, typename A2, typename A3, typename A4>
97 NiceMock(const A1& a1, const A2& a2, const A3& a3,
103 template <typename A1, typename A2, typename A3, typename A4, typename A5>
104 NiceMock(const A1
[all...]
H A Dgmock-generated-function-mockers.h80 template <typename R, typename A1>
81 class FunctionMocker<R(A1)> : public
82 internal::FunctionMockerBase<R(A1)> {
84 typedef R F(A1);
87 MockSpec<F>& With(const Matcher<A1>& m1) {
92 R Invoke(A1 a1) {
101 template <typename R, typename A1, typename A2>
102 class FunctionMocker<R(A1, A2)> : public
103 internal::FunctionMockerBase<R(A1, A2)> {
105 typedef R F(A1, A
[all...]
/external/clang/test/Sema/
H A Dconditional-expr.c87 struct A {int i;} A1; local
88 (void)(1 ? A1 : NULL); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
89 (void)(1 ? NULL : A1); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
90 (void)(1 ? 0 : A1); // expected-error{{incompatible operand types}}
91 (void)(1 ? (void*)0 : A1); // expected-error{{incompatible operand types}}
92 (void)(1 ? A1: (void*)0); // expected-error{{incompatible operand types}}
93 (void)(1 ? A1 : (NULL)); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
/external/webkit/Source/WebKit/android/smoke/
H A DMessageTypes.h85 template <class T, typename A1>
118 template <class T, typename A1>
121 typedef void (T::*MemberSignature)(A1);
126 A1 arg1,
140 typename remove_reference<A1>::type m_arg1;
143 template <class T, typename A1>
144 inline Message* NewMessage(T* object, void (T::*member)(A1),
145 typename identity<A1>::type arg1) {
146 return new MemberFunctionMessage<T, A1>(
150 template <class T, typename A1>
[all...]
/external/chromium/base/
H A Dcallback.h256 template <typename R, typename A1>
257 class Callback<R(A1)> : public internal::CallbackBase {
261 typename internal::ParamTraits<A1>::ForwardType);
279 R Run(typename internal::ParamTraits<A1>::ForwardType a1) const {
287 template <typename R, typename A1, typename A2>
288 class Callback<R(A1, A2)> : public internal::CallbackBase {
292 typename internal::ParamTraits<A1>::ForwardType,
311 R Run(typename internal::ParamTraits<A1>::ForwardType a1,
321 template <typename R, typename A1, typename A2, typename A3>
322 class Callback<R(A1, A
[all...]
/external/llvm/include/llvm/Support/
H A DTypeBuilder.h253 template<typename R, typename A1, bool cross> class TypeBuilder<R(A1), cross> {
257 TypeBuilder<A1, cross>::get(Context),
263 template<typename R, typename A1, typename A2, bool cross>
264 class TypeBuilder<R(A1, A2), cross> {
268 TypeBuilder<A1, cross>::get(Context),
275 template<typename R, typename A1, typename A2, typename A3, bool cross>
276 class TypeBuilder<R(A1, A2, A3), cross> {
280 TypeBuilder<A1, cross>::get(Context),
289 template<typename R, typename A1, typenam
[all...]
/external/clang/test/CXX/temp/temp.arg/temp.arg.type/
H A Dp2.cpp23 template <typename R, typename A1> void f0(R (*)(A1));
/external/clang/test/CXX/temp/temp.param/
H A Dp9-0x.cpp31 template<typename T> struct A1 { template<typename U> struct B; }; struct in namespace:PR8748
32 template<typename T> template<typename U = int> struct A1<T>::B { }; // expected-error{{cannot add a default template argument to the definition of a member of a class template}}
H A Dp4.cpp7 template<int N> struct A1;
/external/opencv/cxcore/src/
H A Dcxjacobieigens.cpp106 float *V1 = V, *A1 = A; local
109 for( p = 0; p < n - 1; p++, A1 += n, V1 += n )
116 float *A3, Apq = A1[q], App, Aqq, Aip, Aiq, Vpi, Vqi;
124 App = A1[p];
151 Aip = A1[i];
155 A1[i] = (float) (Aip * c - Aiq * s);
162 Aip = A1[i];
166 A1[i] = (float) (Aip * c - Aiq * s);
171 A1[p] = (float) (App * c2 + Aqq * s2 - a);
173 A1[
223 double *A1 = A, *V1 = V, *A2 = A, *V2 = V; local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DMessageDigestAlgorithm.java133 String A1 = null;
137 A1 = username_value + ":" + realm_value + ":" + passwd;
143 A1 = H(username_value + ":" + realm_value + ":" + passwd) + ":" + nonce_value + ":"
163 request_digest = KD(H(A1), nonce_value + ":" + nc_value + ":" + cnonce_value + ":"
167 request_digest = KD(H(A1), nonce_value + ":" + H(A2));

Completed in 531 milliseconds

123