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

1 2 3 4 5 6

  /external/clang/test/Modules/Inputs/wildcard-submodule-exports/
A_one.h 1 int *A1;
  /external/clang/test/SemaCXX/
ambiguous-builtin-unary-operator.cpp 23 struct A1 { operator volatile int&(); };
27 struct C1 : B1, A1 { };
namespace-alias.cpp 34 namespace A1 { }
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; }
49 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/test/CodeGenCXX/
default-arguments.cpp 15 struct A1 {
16 A1();
17 ~A1();
26 B(const A1& = A1(), const A2& = A2());
debug-info-enum-class.cpp 3 enum class A { A1=1 }; // underlying type is int by default
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/Index/
annotate-comments-preprocessor.c 15 #define A1 1 /* Aaa. */
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/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/clang/test/Parser/
cxx-extra-semi.cpp 9 void A1();
32 int a1; member in union: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) {}
  /frameworks/av/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;
  /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/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/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/
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/Modules/
wildcard-submodule-exports.cpp 8 int *A1_ptr = A1;
  /external/clang/test/Sema/
conditional-expr.c 104 struct A {int i;} A1;
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/openssl/crypto/bn/asm/
x86_64-mont.pl 702 my @A1=("%r12","%r13");
703 my ($a0,$a1,$ai)=("%r14","%r15","%rbx");
758 mov %rax,$a1
777 mul $a1 # a[2]*a[1]
778 mov %rax,$A1[0] # a[2]*a[1]+t[3]
780 mov %rdx,$A1[1]
783 add $A1[0],$A0[0]
796 xor $A1[0],$A1[0]
797 mul $a1 # a[3]*a[1
    [all...]

Completed in 780 milliseconds

1 2 3 4 5 6