HomeSort by relevance Sort by last modified time
    Searched defs:A1 (Results 26 - 50 of 152) sorted by null

12 3 4 5 6 7

  /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
microsoft-abi-rtti.cpp 21 struct A1 { virtual void f() {} };
22 struct B1 : virtual A1 { virtual void f() {} B1() {} } b1;
58 // CHECK: @"\01??_R2B1@@8" = linkonce_odr constant [3 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@B1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@A1@@8", %rtti.BaseClassDescriptor* null]
60 // CHECK: @"\01??_R1A@A@3FA@A1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUA1@@@8" to i8*), i32 0, i32 0, i32 0, i32 4, i32 80, %rtti.ClassHierarchyDescriptor* @"\01??_R3A1@@8" }
63 // CHECK: @"\01??_R2A1@@8" = linkonce_odr constant [2 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@A1@@8", %rtti.BaseClassDescriptor* null]
64 // CHECK: @"\01??_R1A@?0A@EA@A1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUA1@@@8" to i8*), i32 0, i32 0, i32 -1, i32 0, i32 64, %rtti.ClassHierarchyDescriptor* @"\01??_R3A1@@8" }
    [all...]
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/
enum-increment.cpp 3 enum A { A1, A2, A3 };
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...]
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;
  /external/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...]
  /external/lldb/test/lang/c/stepping/
main.c 50 int A1 = a(1); // frame select 2, thread step-out while stopped at "c(1)"
51 printf("a(1) returns %d\n", A1);
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 130 const Argument *A1 = AI++;
135 if (PointerType *PTy1 = dyn_cast<PointerType>(A1->getType())) {
  /external/wpa_supplicant_8/hs20/server/www/
spp.php 70 $A1 = md5($user . ':' . $realm . ':' . $pw);
72 $resp = md5($A1 . ':' . $data['nonce'] . ':' . $data['nc'] . ':' .
  /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/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 '< ::'?}}
  /external/libcxx/test/support/
allocators.h 19 class A1
23 explicit A1(int id = 0) : id_(id) {}
34 A1(const A1& a) : id_(a.id()) {copy_called = true;}
35 A1(A1&& a) : id_(a.id()) {move_called = true;}
38 A1(const A1<U>& a) : id_(a.id()) {copy_called = true;}
40 A1(A1<U>&& a) : id_(a.id()) {move_called = true;
    [all...]
  /external/llvm/unittests/IR/
ValueHandleTest.cpp 385 AssertingVH<Value> &A0, AssertingVH<Value> &A1)
388 ToClear[1] = &A1;
398 AssertingVH<Value> A1, A2;
399 A1 = BitcastV.get();
400 ClearingVH C(BitcastV.get(), A1, A2);
  /external/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...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
BIQUAD.h 46 LVM_INT16 A1; /* a1 */
55 LVM_INT32 A1; /* a1 */
64 LVM_INT16 A1; /* a1 */
71 LVM_INT32 A1; /* a1 */
79 LVM_INT16 A1; /* a1 */
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
allocators.h 19 class A1
23 explicit A1(int id = 0) : id_(id) {}
34 A1(const A1& a) : id_(a.id()) {copy_called = true;}
35 A1(A1&& a) : id_(a.id()) {move_called = true;}
38 A1(const A1<U>& a) : id_(a.id()) {copy_called = true;}
40 A1(A1<U>&& a) : id_(a.id()) {move_called = true;
    [all...]
  /external/libcxxabi/test/
dynamic_cast3.cpp 14 A1 A2 A3
21 struct A1
24 virtual ~A1() {}
26 A1* getA1() {return this;}
47 A1 a1; local
50 assert(dynamic_cast<A1*>(a1.getA1()) == a1.getA1());
51 assert(dynamic_cast<A1*>(a2.getA2()) == 0)
101 A1 a1; local
152 A1 a1; local
204 A1 a1; local
255 A1 a1; local
316 A1 a1; local
373 A1 a1; local
430 A1 a1; local
486 A1 a1; local
542 A1 a1; local
599 A1 a1; local
655 A1 a1; local
711 A1 a1; local
766 A1 a1; local
821 A1 a1; local
887 A1 a1; local
948 A1 a1; local
1008 A1 a1; local
1065 A1 a1; local
1123 A1 a1; local
1183 A1 a1; local
1240 A1 a1; local
1298 A1 a1; local
1355 A1 a1; local
1412 A1 a1; local
1480 A1 a1; local
1541 A1 a1; local
1600 A1 a1; local
1660 A1 a1; local
1719 A1 a1; local
1779 A1 a1; local
1837 A1 a1; local
1895 A1 a1; local
1963 A1 a1; local
2025 A1 a1; local
2085 A1 a1; local
2147 A1 a1; local
2208 A1 a1; local
2268 A1 a1; local
2327 A1 a1; local
2386 A1 a1; local
    [all...]

Completed in 695 milliseconds

12 3 4 5 6 7