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

1 2 3 4 5 6 7 8 9

  /external/clang/test/Modules/Inputs/wildcard-submodule-exports/
A_one.h 1 int *A1;
  /external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/
copy.pass.cpp 26 typedef ex::polymorphic_allocator<void> A1;
29 std::is_copy_constructible<A1>::value, ""
32 std::is_move_constructible<A1>::value, ""
37 A1 const a((ex::memory_resource*)42);
38 A1 const a2(a);
43 A1 a((ex::memory_resource*)42);
44 A1 a2(std::move(a));
other_alloc.pass.cpp 28 typedef ex::polymorphic_allocator<void> A1;
32 std::is_convertible<A1 const &, A2>::value, ""
35 std::is_convertible<A2 const &, A1>::value, ""
38 std::is_nothrow_constructible<A1, A2 const &>::value, ""
41 std::is_nothrow_constructible<A2, A1 const &>::value, ""
46 A1 const a((ex::memory_resource*)42);
52 A1 a((ex::memory_resource*)42);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/
copy.pass.cpp 26 typedef ex::polymorphic_allocator<void> A1;
29 std::is_copy_constructible<A1>::value, ""
32 std::is_move_constructible<A1>::value, ""
37 A1 const a((ex::memory_resource*)42);
38 A1 const a2(a);
43 A1 a((ex::memory_resource*)42);
44 A1 a2(std::move(a));
other_alloc.pass.cpp 28 typedef ex::polymorphic_allocator<void> A1;
32 std::is_convertible<A1 const &, A2>::value, ""
35 std::is_convertible<A2 const &, A1>::value, ""
38 std::is_nothrow_constructible<A1, A2 const &>::value, ""
41 std::is_nothrow_constructible<A2, A1 const &>::value, ""
46 A1 const a((ex::memory_resource*)42);
52 A1 a((ex::memory_resource*)42);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
armv8-a+pan.s 6 A1:
armv8-a+rdma.s 14 A1:
armv8_2-a.s 4 A1:
  /external/clang/test/Sema/
enum-increment.c 3 enum A { A1, A2, A3 };
  /external/clang/test/SemaCXX/
ambiguous-builtin-unary-operator.cpp 23 struct A1 { operator volatile int&(); };
27 struct C1 : B1, A1 { };
  /external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/
equal.pass.cpp 32 typedef ex::polymorphic_allocator<void> A1;
36 A1 const a1; local
38 static_assert(std::is_same<decltype(a1 == a2), bool>::value, "");
39 static_assert(noexcept(a1 == a2), "");
45 A1 const a1(&d1);
46 A1 const a2(&d2);
48 assert(a1 == a2);
54 assert(a2 == a1);
    [all...]
not_equal.pass.cpp 32 typedef ex::polymorphic_allocator<void> A1;
36 A1 const a1; local
38 static_assert(std::is_same<decltype(a1 != a2), bool>::value, "");
39 static_assert(noexcept(a1 != a2), "");
45 A1 const a1(&d1);
46 A1 const a2(&d2);
48 assert(a1 != a2);
54 assert(a2 != a1);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/vetcycle/
p.go 6 A1 interface{ a(D1) }
7 B1 interface{ A1 }
12 var _ A1 = C1 /* ERROR cannot use C1 */ (nil)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/vetcycle/
p.go 6 A1 interface{ a(D1) }
7 B1 interface{ A1 }
12 var _ A1 = C1 /* ERROR cannot use C1 */ (nil)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/
equal.pass.cpp 32 typedef ex::polymorphic_allocator<void> A1;
36 A1 const a1; local
38 static_assert(std::is_same<decltype(a1 == a2), bool>::value, "");
39 static_assert(noexcept(a1 == a2), "");
45 A1 const a1(&d1);
46 A1 const a2(&d2);
48 assert(a1 == a2);
54 assert(a2 == a1);
    [all...]
not_equal.pass.cpp 32 typedef ex::polymorphic_allocator<void> A1;
36 A1 const a1; local
38 static_assert(std::is_same<decltype(a1 != a2), bool>::value, "");
39 static_assert(noexcept(a1 != a2), "");
45 A1 const a1(&d1);
46 A1 const a2(&d2);
48 assert(a1 != a2);
54 assert(a2 != a1);
    [all...]
  /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 8 void a1(struct A);
13 class A1 {
  /external/clang/test/CodeGenCXX/
init-priority-attr.cpp 11 class A1 {
13 A1() { foo(2); }
50 A1 a1 __attribute__((init_priority (300))); variable
  /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
41 LVM_INT16 A1;
51 LVM_FLOAT A1;
59 * Biquad with coefficients A0, A1 and B1 coefficients
66 LVM_INT16 A1;
74 LVM_FLOAT A1;
  /external/boringssl/src/crypto/fipsmodule/tls/
kdf.c 73 uint8_t A1[EVP_MAX_MD_SIZE];
87 !HMAC_Final(&ctx, A1, &A1_len)) {
95 !HMAC_Update(&ctx, A1, A1_len) ||
96 // Save a copy of |ctx| to compute the next A1 value below.
120 // Calculate the next A1 value.
121 if (!HMAC_Final(&ctx_tmp, A1, &A1_len)) {
129 OPENSSL_cleanse(A1, sizeof(A1));
  /external/clang/test/Analysis/
NewDeleteLeaks-PR19102.cpp 5 class A1 {
7 A1(int);
27 new A1(0); // expected-warning@+1 {{Potential memory leak}}
  /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}}

Completed in 1064 milliseconds

1 2 3 4 5 6 7 8 9