HomeSort by relevance Sort by last modified time
    Searched refs:A1 (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /external/clang/test/CodeGenCXX/
default-arguments.cpp 15 struct A1 {
16 A1();
17 ~A1();
26 B(const A1& = A1(), const A2& = A2());
vtt-layout.cpp 26 class A1 { int i; };
28 class V1 : public A1, public A2 { int i; };
45 class A1 { int i; };
47 class V1 : public A1, public virtual A2 { int i; };
  /external/clang/test/SemaCXX/
ambiguous-builtin-unary-operator.cpp 23 struct A1 { operator volatile int&(); };
27 struct C1 : B1, A1 { };
namespace-alias.cpp 30 namespace A1 { }
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; }
45 namespace A2 = A1;
warn-reorder-ctor-initialization.cpp 57 struct A1 {
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'}}
  /external/clang/INPUTS/
macro_pounder_obj.c 7 #define A1 A0 A0 A0 A0 A0 A0
8 #define A2 A1 A1 A1 A1 A1 A1
macro_pounder_fn.c 7 #define A1(A, B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B)
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/
gmock-generated-internal-utils.h 74 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, typename A2, typename A3, typename A4
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-function-params.cpp 34 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, ptr> { }
    [all...]
dependent-base-member-init.cpp 8 class A1 {
9 A1(int x) {}
11 template<class C> class B1 : public A1 {
12 B1(C x) : A1(x.x) {}
temp_arg_type.cpp 5 A<0> *a1; // expected-error{{template argument for template type parameter must be a type}} variable
38 template<typename T> struct A1 { };
39 A1<Array<int, 17>::type> ax;
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
Filters.h 34 * Biquad with coefficients A0, A1, A2, B1 and B2 coefficients
40 LVM_INT16 A1;
49 * Biquad with coefficients A0, A1 and B1 coefficients
55 LVM_INT16 A1;
LVM_FO_HPF.c 37 /* A1 = A0 */
45 /* A1 33547744 */
56 /* Y = (A0 + A1*X + A2*X2 + A3*X3 + ?.. + AN*xN) << AN+1 */
96 pCoeffs->A1=-pCoeffs->A0; /* Store A1=-A0*/
LVM_FO_LPF.c 37 /* A1 = A0 */
45 /* A1 33547744 */
56 /* Y = (A0 + A1*X + A2*X2 + A3*X3 + ?.. + AN*xN) << AN+1 */
94 pCoeffs->A1=pCoeffs->A0;
FO_1I_D16F16Css_TRC_WRA_01_Init.c 49 temp=pCoef->A1;
FO_1I_D32F32Cll_TRC_WRA_01_Init.c 48 temp=pCoef->A1;
FO_2I_D16F32Css_LShx_TRC_WRA_01_Init.c 48 temp=pCoef->A1;
  /cts/tools/signature-tools/test/signature/comparator/
AnnotationCompareTest.java 37 " A1 value() default @A1;" +
39 CompilationUnit A1 = new CompilationUnit("a.A1",
41 "public @interface A1 {" +
51 IApi fromApi = convert(A0, A1, AnnotBDefault);
52 IApi toApi = convert(A0, A1, AnnotB);
63 CompilationUnit A1 = new CompilationUnit("a.A0",
69 IApi toApi = convert(A1);
  /external/webkit/Source/WebKit/android/smoke/
MessageTypes.h 85 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/testing/
gmock_mutant.h     [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-nice-strict.h 79 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)
    [all...]
  /external/clang/test/Sema/
conditional-expr.c 87 struct A {int i;} A1;
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/chromium/base/
callback.h 256 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 {
283 return f(invoker_storage_.get(), a1);
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
    [all...]
  /external/llvm/include/llvm/Support/
TypeBuilder.h 253 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, typename A2, typename A3, typename A4
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 23 template <typename R, typename A1> void f0(R (*)(A1));

Completed in 293 milliseconds

1 2 3 4 5