Searched defs:A1 (Results 1 - 25 of 44) sorted by relevance

12

/external/clang/test/Modules/Inputs/wildcard-submodule-exports/
H A DA_one.h1 int *A1; variable
/external/clang/INPUTS/
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)
H A Dmacro_pounder_obj.c7 #define A1 A0 A0 A0 A0 A0 A0 macro
8 #define A2 A1 A1 A1 A1 A1 A1
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
H A Dp3.cpp11 class A1 { class
/external/clang/test/CodeGenCXX/
H A Ddebug-info-enum-class.cpp3 enum class A { A1=1 }; // underlying type is int by default member in class:A
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/Index/
H A Dannotate-comments-preprocessor.c15 #define A1 1 /* Aaa. */ macro
22 int A[] = { A0, A1, A2, A3, A4, A5, A6 };
25 int f(int a1[A1], int a2[A2], int a3[A3], int a4[A4], int a5[A5], int a6[A6]);
28 #if A1 /** Aaa. */
29 int g(int a1[A1], int a2[A2], int a3[A3], int a4[A4], int a5[A5], int a6[A6]);
/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.cpp34 namespace A1 { } namespace in namespace:H
37 // These all point to A1.
38 namespace B = A1; // expected-note {{previous definition is here}}
39 namespace B = A1;
47 namespace A1 { int i; } namespace in namespace:I
49 namespace A2 = A1;
H A Dfriend.cpp78 struct A1 { friend void A(); }; struct in namespace:test5
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 Dwarn-unique-enum.cpp2 enum A { A1 = 1, A2 = 1, A3 = 1 }; // expected-warning {{all elements of 'A' are initialized with literals to value 1}} \ enumerator in enum:A
/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}}
/external/arduino/hardware/arduino/cores/arduino/
H A DWProgram.h35 const static uint8_t A1 = 55; variable
52 const static uint8_t A1 = 15; variable
/external/clang/test/SemaTemplate/
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) {}
/external/llvm/unittests/Support/
H A DValueHandleTest.cpp389 AssertingVH<Value> &A0, AssertingVH<Value> &A1)
392 ToClear[1] = &A1;
402 AssertingVH<Value> A1, A2; local
403 A1 = BitcastV.get();
404 ClearingVH C(BitcastV.get(), A1, A2);
388 ClearingVH(Value *V, AssertingVH<Value> &A0, AssertingVH<Value> &A1) argument
H A DAlignOfTest.cpp27 typedef char alignas(1) A1; member in namespace:__anon9262
32 typedef char A1 __attribute__((aligned(1)));
37 typedef __declspec(align(1)) char A1;
46 struct SA1 { A1 a; };
55 struct S5 { A1 a1; A2 a2; A4 a4; A8 a8; };
90 [AlignOf<A1>::Alignment > 0]
128 EXPECT_EQ(1u, alignOf<A1>());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp39 inline bool sameDecl(const Expr *A1, const Expr *A2) { argument
40 if (const DeclRefExpr *D1 = dyn_cast<DeclRefExpr>(A1->IgnoreParenCasts()))
/external/clang/test/CXX/special/class.copy/
H A Dp23-cxx11.cpp48 struct A1 { struct
53 template struct CopyAssign<A1>; // expected-note {{here}}
/external/clang/test/Parser/
H A Dcxx-casting.cpp77 ::D<::F> A1; // expected-error{{found '<::' after a template name which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}} local
/external/clang/test/Sema/
H A Dconditional-expr.c104 struct A {int i;} A1; local
105 (void)(1 ? A1 : NULL); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
106 (void)(1 ? NULL : A1); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
107 (void)(1 ? 0 : A1); // expected-error{{incompatible operand types}}
108 (void)(1 ? (void*)0 : A1); // expected-error{{incompatible operand types}}
109 (void)(1 ? A1: (void*)0); // expected-error{{incompatible operand types}}
110 (void)(1 ? A1 : (NULL)); // expected-error{{non-pointer operand type 'struct A' incompatible with NULL}}
/external/aac/libSBRenc/src/
H A Dresampler.cpp101 #define A1 2 macro
108 const FIXP_SGL *coeffa; /*! SOS matrix One row/section. Scaled using BQC(). Order of coefficients: B1,B2,A1,A2. B0=A0=1.0 */
406 y = state0 - fMult(state1b, coeff[A1]) - fMult(state2b, coeff[A2]);
440 state0 = input - fMult(state1, coeff[A1]) - fMult(state2, coeff[A2]);
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp17 union A1 { union
18 A1();
19 NonTrivDtor n; // expected-note {{destructor of 'A1' is implicitly deleted because variant field 'n' has a non-trivial destructor}}
21 A1 a1; // expected-error {{deleted function}}

Completed in 1101 milliseconds

12