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

1 2 3 4 5

  /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 { };
cxx1y-contextual-conversion-tweaks.cpp 53 struct A1 {
79 void foo(A0 a0, A1 a1, A2 a2, A3 a3, A4 a4, B2 b2) {
81 switch (a1) {} // @81 -- fails for different reasons
96 //expected-error@81 {{statement requires expression of integer type ('extended_examples::A1' invalid)}}
99 //expected-error@81 {{cannot initialize object parameter of type 'extended_examples::A1' with an expression of type 'extended_examples::A1'}}
105 struct A1 { // leads to viable match in C++1y, and no viable match in C++11
137 void foo(A1 a1, A2 a2, B1 b1, B2 b2, C c, D d)
    [all...]
  /external/chromium_org/v8/test/mjsunit/lithium/
StoreKeyed.js 40 var A1 = [1.2, 2.3];
48 foo(A1, 1, 3.4);
58 assertEquals(A1[0], A3[0]);
59 assertEquals(A1[1], A3[1]);
  /external/clang/INPUTS/
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)
macro_pounder_obj.c 7 #define A1 A0 A0 A0 A0 A0 A0
8 #define A2 A1 A1 A1 A1 A1 A1
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
p3.cpp 6 void a1(struct A);
11 class A1 {
  /external/clang/test/CodeGenCXX/
init-priority-attr.cpp 11 class A1 {
13 A1() { foo(2); }
44 A1 a1 __attribute__((init_priority (300))); variable
debug-info-enum-class.cpp 3 enum class A { A1=1 }; // underlying type is int by default
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/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]);
  /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;
  /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/clang/test/CXX/temp/temp.param/
p9-0x.cpp 31 template<typename T> struct A1 { template<typename U> struct B; };
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/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 130 const Argument *A1 = AI++;
135 if (PointerType *PTy1 = dyn_cast<PointerType>(A1->getType())) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
construct.pass.cpp 57 struct A1
60 A1(char c)
67 int A1::count = 0;
93 A1::count = 0;
95 std::aligned_storage<sizeof(A1)>::type a1; local
96 assert(A1::count == 0);
97 std::allocator_traits<A<int> >::construct(a, (A1*)&a1, 'c');
98 assert(A1::count == 1)
124 std::aligned_storage<sizeof(A1)>::type a1; local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_log.c 89 static double A1 = .08333333333333178827;
396 q = u*v*(A1 + v*(A2 + v*(A3 + v*A4)));
456 q = u*v*(A1 + v*(A2 + v*(A3 + v*A4)));
  /external/arduino/hardware/arduino/cores/arduino/
WProgram.h 35 const static uint8_t A1 = 55;
52 const static uint8_t A1 = 15;
  /external/clang/test/SemaTemplate/
dependent-base-member-init.cpp 9 class A1 {
10 A1(int x) {}
12 template<class C> class B1 : public A1 {
13 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;
  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 56 Object *A1 = DUT.allocate(Cap, Allocator);
57 A1[0].Num = 21;
58 A1[7].Num = 17;
68 EXPECT_EQ(21, A1[0].Num);
69 EXPECT_EQ(17, A1[7].Num);
78 EXPECT_EQ(21, A1[0].Num);
79 EXPECT_EQ(17, A1[7].Num);
88 DUT.deallocate(Cap, A1);
96 EXPECT_EQ(A1, A1x);
102 EXPECT_NE(A1, A4)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
MessageDigestAlgorithm.java 133 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));
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_prime.c 129 static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1,
249 BIGNUM *A1, *A1_odd, *check; /* taken from ctx */
290 A1 = BN_CTX_get(ctx);
295 /* compute A1 := A - 1 */
296 if (!BN_copy(A1, A))
298 if (!BN_sub_word(A1, 1))
300 if (BN_is_zero(A1))
306 /* write A1 as A1_odd * 2^k */
308 while (!BN_is_bit_set(A1, k))
310 if (!BN_rshift(A1_odd, A1, k)
    [all...]
  /external/clang/test/Parser/
cxx-casting.cpp 77 ::D<::F> A1; // expected-error{{found '<::' after a template name which forms the digraph '<:' (aka '[') and a ':', did you mean '< ::'?}}

Completed in 1942 milliseconds

1 2 3 4 5