Home
last modified time | relevance | path

Searched refs:A (Results 1 – 25 of 6004) sorted by relevance

12345678910>>...241

/external/clang/test/Index/
Dget-cursor.cpp68 class A { class
69 A();
70 virtual ~A();
73 A& operator=(const A&);
74 A& operator=(A&&) noexcept;
77 A operator+() const;
78 A operator-() const;
79 A operator~() const;
80 A operator*() const;
81 A operator&() const;
[all …]
/external/clang/test/CodeGenCXX/
Dexceptions.cpp26 struct A { A(int); A(int, int); ~A(); void *p; }; argument
28 A *a() { in a()
35 return new A(5); in a()
38 A *b() { in b()
47 return new A(foo()); in b()
53 A *c() { in c()
69 return new A(B().x); in c()
79 A *d() { in d()
94 return new A(B()); in d()
97 A *e() { in e()
[all …]
Duncopyable-args.cpp6 struct A { struct
9 void foo(A);
23 struct A { struct
24 A();
27 void foo(A);
46 struct A { struct
47 A();
48 A(A &&o);
51 void foo(A);
66 struct A { struct
[all …]
Dtemporaries.cpp13 struct A { int n; }; argument
15 struct C : A, B {};
16 extern const A &&a = (A&&)(A&&)(C&&)(C{});
31 struct A { ~A(); }; struct
35 A &&a = dynamic_cast<A&&>(A{});
52 struct A { struct
53 A();
54 ~A();
61 (void)A(); in f1()
65 A().f(); in f1()
[all …]
Darm.cpp39 struct A { struct
40 A(int i) { foo(); } in A() function
41 ~A() { foo(); } in ~A() argument
52 A a = 10; in test()
75 struct A { struct
78 A(int);
79 virtual ~A() { foo(); } in ~A() argument
90 struct C : A, virtual B {
93 C(int i) : A(i), B(i) { foo(); } in C()
105 struct A { struct
[all …]
Dmember-function-pointers.cpp12 struct A { int a; void f(); virtual void vf1(); virtual void vf2(); }; struct
14 struct C : B, A { };
16 void (A::*pa)();
17 void (A::*volatile vpa)();
22 void (A::*pa2)() = &A::f;
26 void (A::*pa3)() = &A::vf1;
30 void (A::*pa4)() = &A::vf2;
36 void (A::*pc3)() = &A::vf1;
58 pa = static_cast<void (A::*)()>(pc); in f()
63 void (A::*pa2)() = &A::f; in f2()
[all …]
Ddestructors.cpp8 struct A { struct
11 ~A(); argument
15 struct B : A {
23 A a;
60 struct A { struct
61 ~A();
64 A::~A() { } in ~A()
65 struct B : A {
81 struct A : Base { struct
83 ~A();
[all …]
/external/clang/test/Analysis/
Dauto-obj-dtors-cfg-output.cpp4 class A { class
10 A() {} in A() function in A
16 ~A() {} in ~A()
52 A a; in test_const_ref()
53 const A& b = a; in test_const_ref()
54 const A& c = A(); in test_const_ref()
70 A a[2]; in test_array()
71 A b[0]; in test_array()
94 A a; in test_scope()
95 { A c; in test_scope()
[all …]
/external/linux-tools-perf/src/tools/perf/util/
Dctype.c10 A = GIT_ALPHA, enumerator
26 P, A, A, A, A, A, A, A, A, A, A, A, A, A, A, A, /* 64.. 79 */
27 A, A, A, A, A, A, A, A, A, A, A, G, G, P, R, P, /* 80.. 95 */
28 P, A, A, A, A, A, A, A, A, A, A, A, A, A, A, A, /* 96..111 */
29 A, A, A, A, A, A, A, A, A, A, A, R, R, P, P, 0, /* 112..127 */
/external/libcxx/test/std/strings/basic.string/string.cons/
Dsubstr.pass.cpp29 typedef typename S::allocator_type A; in test() typedef
38 assert(s2.get_allocator() == A()); in test()
52 typedef typename S::allocator_type A; in test() typedef
61 assert(s2.get_allocator() == A()); in test()
75 typedef typename S::allocator_type A; in test() typedef
96 typedef test_allocator<char> A; in main() typedef
97 typedef std::basic_string<char, std::char_traits<char>, A> S; in main()
99 test(S(A(3)), 0); in main()
100 test(S(A(3)), 1); in main()
101 test(S("1", A(5)), 0); in main()
[all …]
/external/pcre/dist/testdata/
DtestoutputEBC11 /^A/m
13 0: A
15 0: A
17 /^A/m<any>
19 0: A
21 0: A
23 0: A
25 0: A
27 /^A/m<anycrlf>
29 0: A
[all …]
DtestinputEBC11 /^A/m
15 /^A/m<any>
21 /^A/m<anycrlf>
30 /^A\�/
31 A B
35 /^A\�/
38 A B
42 /^A\�/
43 A\x15B
44 A\x0dB
[all …]
/external/clang/test/CXX/class.access/class.protected/
Dp1.cpp4 class A { class
10 class B : public A {
12 class C : protected A { // expected-note {{declared}}
17 void test(A &a) { in test()
36 class A { class
39 static void test(A&);
41 class B : public A {
44 class C : protected A {
51 void A::test(A &a) { in test()
70 class A { class
[all …]
/external/libcxx/test/std/language.support/support.exception/propagation/
Dcurrent_exception.pass.cpp17 struct A struct
21 A() {++constructed;} in A() argument
22 ~A() {--constructed;} in ~A() argument
23 A(const A&) {++constructed;} in A() function
26 int A::constructed = 0;
37 assert(A::constructed == 0); in main()
38 throw A(); in main()
43 assert(A::constructed == 1); in main()
45 assert(A::constructed == 0); in main()
47 assert(A::constructed == 0); in main()
[all …]
/external/clang/INPUTS/
Dmacro_pounder_fn.c6 #define A0(A, B) A B argument
7 #define A1(A, B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) argument
8 #define A2(A, B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) A1(A,B) argument
9 #define A3(A, B) A2(A,B) A2(A,B) A2(A,B) A2(A,B) A2(A,B) A2(A,B) argument
10 #define A4(A, B) A3(A,B) A3(A,B) A3(A,B) A3(A,B) A3(A,B) A3(A,B) argument
11 #define A5(A, B) A4(A,B) A4(A,B) A4(A,B) A4(A,B) A4(A,B) A4(A,B) argument
12 #define A6(A, B) A5(A,B) A5(A,B) A5(A,B) A5(A,B) A5(A,B) A5(A,B) argument
13 #define A7(A, B) A6(A,B) A6(A,B) A6(A,B) A6(A,B) A6(A,B) A6(A,B) argument
14 #define A8(A, B) A7(A,B) A7(A,B) A7(A,B) A7(A,B) A7(A,B) A7(A,B) argument
/external/clang/test/CXX/class.access/
Dp4.cpp15 class A { class
24 void test(A *op) { in test()
29 void (A::*a)(Public&) = &A::foo; in test()
30 void (A::*b)(Protected&) = &A::foo; // expected-error {{'foo' is a protected member}} in test()
31 void (A::*c)(Private&) = &A::foo; // expected-error {{'foo' is a private member}} in test()
37 class A { class
58 void operator+(const A &, Public&);
59 void operator+(const A &, Protected&);
60 void operator+(const A &, Private&);
61 void operator-(const A &);
[all …]
/external/v8/test/mjsunit/
Darguments-opt.js59 function A(key) { class
64 assertEquals(0, A(0));
65 assertEquals(0, A(0,1));
66 assertEquals(2, A(1,2));
67 assertEquals(2, A(1,2,3,4,5));
68 assertEquals(5, A(4,2,3,4,5));
69 assertTrue(typeof A(1) == 'undefined');
70 assertTrue(typeof A(3,2,1) == 'undefined');
74 assertTrue(typeof(A(-10000)) == 'undefined');
75 assertTrue(typeof(A(-10000, 0)) == 'undefined');
[all …]
/external/llvm/test/MC/Sparc/
Dsparc-ctrl-instructions.s4 ! CHECK: call foo ! encoding: [0b01AAAAAA,A,A,A]
5 ! CHECK: ! fixup A - offset: 0, value: foo, kind: fixup_sparc_call30
17 ! CHECK: call %g1+%lo(sym) ! encoding: [0x9f,0xc0,0b011000AA,A]
18 ! CHECK-NEXT: ! fixup A - offset: 0, value: %lo(sym), kind: fixup_sparc_lo10
30 ! CHECK: jmp %g1+%lo(sym) ! encoding: [0x81,0xc0,0b011000AA,A]
31 ! CHECK-NEXT: ! fixup A - offset: 0, value: %lo(sym), kind: fixup_sparc_lo10
43 ! CHECK: jmpl %g1+%lo(sym), %g2 ! encoding: [0x85,0xc0,0b011000AA,A]
44 … ! CHECK-NEXT: ! fixup A - offset: 0, value: %lo(sym), kind: fixup_sparc_lo10
47 ! CHECK: ba .BB0 ! encoding: [0x10,0b10AAAAAA,A,A]
48 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br22
[all …]
Dsparc64-ctrl-instructions.s4 ! CHECK: bne %xcc, .BB0 ! encoding: [0x12,0b01101AAA,A,A]
5 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br19
8 ! CHECK: be %xcc, .BB0 ! encoding: [0x02,0b01101AAA,A,A]
9 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br19
12 ! CHECK: bg %xcc, .BB0 ! encoding: [0x14,0b01101AAA,A,A]
13 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br19
16 ! CHECK: ble %xcc, .BB0 ! encoding: [0x04,0b01101AAA,A,A]
17 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br19
20 ! CHECK: bge %xcc, .BB0 ! encoding: [0x16,0b01101AAA,A,A]
21 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br19
[all …]
/external/clang/test/SemaCXX/
Dwarn-global-constructors.cpp20 struct A { int x; }; struct
21 A a;
22 A b = A();
23 A c = { 10 };
24 A d = { opaque_int() }; // expected-warning {{global constructor}}
25 A e = A(A());
26 A f = A(a); // expected-warning {{global constructor}}
27 A g(a); // expected-warning {{global constructor}}
28 A h((A())); // elided
29 A i((A(A()))); // elided
[all …]
/external/clang/lib/Headers/
Davx512erintrin.h32 #define _mm512_exp2a23_round_pd(A, R) __extension__ ({ \ argument
33 (__m512d)__builtin_ia32_exp2pd_mask((__v8df)(__m512d)(A), \
37 #define _mm512_mask_exp2a23_round_pd(S, M, A, R) __extension__ ({ \ argument
38 (__m512d)__builtin_ia32_exp2pd_mask((__v8df)(__m512d)(A), \
42 #define _mm512_maskz_exp2a23_round_pd(M, A, R) __extension__ ({ \ argument
43 (__m512d)__builtin_ia32_exp2pd_mask((__v8df)(__m512d)(A), \
47 #define _mm512_exp2a23_pd(A) \ argument
48 _mm512_exp2a23_round_pd((A), _MM_FROUND_CUR_DIRECTION)
50 #define _mm512_mask_exp2a23_pd(S, M, A) \ argument
51 _mm512_mask_exp2a23_round_pd((S), (M), (A), _MM_FROUND_CUR_DIRECTION)
[all …]
/external/llvm/test/CodeGen/X86/
Dmusttail-indirect.ll6 ; struct A { A(); ~A(); int a; };
10 ; virtual int g(A, int, A);
11 ; virtual void h(A, int, A);
12 ; virtual A i(A, int, A);
13 ; virtual A j(int);
17 ; int (B::*mp_g)(A, int, A) = &B::g;
18 ; void (B::*mp_h)(A, int, A) = &B::h;
19 ; A (B::*mp_i)(A, int, A) = &B::i;
20 ; A (B::*mp_j)(int) = &B::j;
26 %struct.A = type { i32 }
[all …]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
Dpointer_deleter_allocator.pass.cpp20 struct A struct
24 A() {++count;} in A() function
25 A(const A&) {++count;} in A() argument
26 ~A() {--count;} in ~A() argument
29 int A::count = 0;
35 A* ptr = new A; in main()
36 std::shared_ptr<A> p(ptr, test_deleter<A>(3), test_allocator<A>(5)); in main()
37 assert(A::count == 1); in main()
40 test_deleter<A>* d = std::get_deleter<test_deleter<A> >(p); in main()
41 assert(test_deleter<A>::count == 1); in main()
[all …]
/external/llvm/test/MC/PowerPC/
Dppc64-fixups.s10 # CHECK-BE: b target # encoding: [0b010010AA,A,A,0bAAAAAA00]
11 # CHECK-LE: b target # encoding: [0bAAAAAA00,A,A,0b010010AA]
12 # CHECK-BE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc…
13 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc…
14 # CHECK-BE-REL: 0x{{[0-9A-F]*[048C]}} R_PPC64_REL24 target 0x0
15 # CHECK-LE-REL: 0x{{[0-9A-F]*[048C]}} R_PPC64_REL24 target 0x0
18 # CHECK-BE: ba target # encoding: [0b010010AA,A,A,0bAAAAAA10]
19 # CHECK-LE: ba target # encoding: [0bAAAAAA10,A,A,0b010010AA]
20 # CHECK-BE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc…
21 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc…
[all …]
/external/webrtc/src/common_audio/signal_processing/
Dspl_sqrt.c26 WebRtc_Word32 A, B, x2; in WebRtcSpl_SqrtLocal() local
45 A = -x2; // A = -(x/2)^2 in WebRtcSpl_SqrtLocal()
46 B = B + (A >> 1); // B = 1 + x/2 - 0.5*(x/2)^2 in WebRtcSpl_SqrtLocal()
48 A = WEBRTC_SPL_RSHIFT_W32(A, 16); in WebRtcSpl_SqrtLocal()
49 A = A * A * 2; // A = (x/2)^4 in WebRtcSpl_SqrtLocal()
50 t16 = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(A, 16); in WebRtcSpl_SqrtLocal()
54 t16 = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(A, 16); in WebRtcSpl_SqrtLocal()
55 A = WEBRTC_SPL_MUL_16_16(x_half, t16) * 2; // A = (x/2)^5 in WebRtcSpl_SqrtLocal()
56 t16 = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(A, 16); in WebRtcSpl_SqrtLocal()
61 A = WEBRTC_SPL_MUL_16_16(x_half, t16) * 2; // A = x/2^3 in WebRtcSpl_SqrtLocal()
[all …]

12345678910>>...241