Home
last modified time | relevance | path

Searched defs:A (Results 1 – 25 of 2612) sorted by relevance

12345678910>>...105

/minix3/external/bsd/llvm/dist/clang/test/CodeGenObjCXX/
H A Dmicrosoft-abi-arc-param-order.mm3 struct A { struct
4 A(); field
5 A(const A &); field
6 ~A(); field
13 // CHECK: (<{ %struct.A, i8*, %struct.A, i8* }>* inalloca) argument
14 void test_arc_order(A a, id __attribute__((ns_consumed)) b , A c, id __attribute__((ns_consumed)) d… argument
/minix3/external/bsd/libc++/dist/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/
H A Datomic_fetch_add.pass.cpp37 typedef std::atomic<T> A; in test() typedef
44 typedef std::atomic<T> A; in test() typedef
57 typedef std::atomic<T> A; in testp() typedef
65 typedef std::atomic<T> A; in testp() typedef
74 struct A struct
78 explicit A(int d = 0) : i(d) {} in A() argument
79 A(const A& a) : i(a.i) {} in A() argument
80 A(const volatile A& a) : i(a.i) {} in A() argument
82 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
H A Datomic_fetch_sub_explicit.pass.cpp38 typedef std::atomic<T> A; in test() typedef
46 typedef std::atomic<T> A; in test() typedef
60 typedef std::atomic<T> A; in testp() typedef
69 typedef std::atomic<T> A; in testp() typedef
79 struct A struct
83 explicit A(int d = 0) : i(d) {} in A() function
84 A(const A& a) : i(a.i) {} in A() function
85 A(const volatile A& a) : i(a.i) {} in A() function
87 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
H A Datomic_fetch_sub.pass.cpp37 typedef std::atomic<T> A; in test() typedef
44 typedef std::atomic<T> A; in test() typedef
57 typedef std::atomic<T> A; in testp() typedef
65 typedef std::atomic<T> A; in testp() typedef
74 struct A struct
78 explicit A(int d = 0) : i(d) {} in A() argument
79 A(const A& a) : i(a.i) {} in A() argument
80 A(const volatile A& a) : i(a.i) {} in A() function
82 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
H A Datomic_fetch_add_explicit.pass.cpp37 typedef std::atomic<T> A; in test() typedef
45 typedef std::atomic<T> A; in test() typedef
59 typedef std::atomic<T> A; in testp() typedef
68 typedef std::atomic<T> A; in testp() typedef
78 struct A struct
82 explicit A(int d = 0) : i(d) {} in A() argument
83 A(const A& a) : i(a.i) {} in A() function
84 A(const volatile A& a) : i(a.i) {} in A() argument
86 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
/minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Duncopyable-args.cpp6 struct A { struct
14 // CHECK: alloca %"struct.trivial::A"
23 struct A { struct
34 // CHECK: alloca %"struct.default_ctor::A"
46 struct A { struct
59 // CHECK-DISABLED: call void @_ZN9move_ctor3fooENS_1AE(%"struct.move_ctor::A"* %{{.*}})
66 struct A { struct
80 // CHECK-DISABLED: call void @_ZN11all_deleted3fooENS_1AE(%"struct.all_deleted::A"* %{{.*}})
87 struct A { struct
100 // CHECK-DISABLED: call void @_ZN18implicitly_deleted3fooENS_1AE(%"struct.implicitly_deleted::A"* %…
[all …]
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dclass-base-member-init.cpp20 struct A { struct
25 A(); argument
28 A::A() : a(10), b(20) { } in A() function in A
31 template<typename T> struct A {}; struct
40 template<typename T> struct A : T { struct
41 A() : T(), // expected-note {{previous initialization is here}} in A() argument
47 template<typename T> struct A { struct
48 T t;
50 A() : t(1), // expected-note {{previous initialization is here}} in A() function
56 class A { class
[all …]
/minix3/external/bsd/libc++/dist/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dallocate_shared.pass.cpp25 struct A struct
29 A(int i, char c) : int_(i), char_(c) {++count;} in A() function
30 A(const A& a) in A() function
33 ~A() {--count;} in ~A() argument
42 int A::count = 0; argument
/minix3/external/bsd/llvm/dist/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp5.cpp4 template <class T> class A { class
26 template <class T> struct A { struct
27 void f() { C::foo(); } in f()
30 template <class T> struct A<T*> { struct
31 void f() { C::foo(); } in f()
34 template <> struct A<char> { struct
35 void f() { C::foo(); } in f()
48 template <class T> struct A { struct
49 void f() { C::foo(); } in f()
52 template <class T> struct A<T*> { struct
[all …]
/minix3/external/bsd/libc++/dist/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.modifiers/
H A Dswap.pass.cpp21 struct A struct
25 A() : state_(0) {++count;} in A() argument
26 explicit A(int i) : state_(i) {++count;} in A() argument
27 A(const A& a) : state_(a.state_) {++count;} in A() argument
28 A& operator=(const A& a) {state_ = a.state_; return *this;} in operator =() argument
29 ~A() {--count;} in ~A() argument
/minix3/external/bsd/libc++/dist/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.modifiers/
H A Dswap.pass.cpp21 struct A struct
25 A() : state_(0) {++count;} in A() argument
26 explicit A(int i) : state_(i) {++count;} in A() function
27 A(const A& a) : state_(a.state_) {++count;} in A() function
28 A& operator=(const A& a) {state_ = a.state_; return *this;} in operator =() argument
29 ~A() {--count;} in ~A() argument
/minix3/external/bsd/llvm/dist/clang/test/CXX/temp/temp.res/temp.dep/temp.dep.type/
H A Dp1.cpp8 template<class T> struct A { struct
9 struct C {};
10 B<T>::C bc; // ok, B<T> is the current instantiation.
13 template<class T> struct A<A<T>> { struct
14 struct C {};
15 B<B<T>>::C bc; // ok, B<B<T>> is the current instantiation.
18 template<class T> struct A<A<A<T>>> { struct
19 struct C {};
20 B<B<T>>::C bc; // expected-error {{missing 'typename'}}
25 template<class T> struct A { struct
/minix3/external/bsd/libc++/dist/libcxx/test/std/language.support/support.exception/propagation/
H A Drethrow_exception.pass.cpp17 struct A struct
22 A(int data = 0) : data_(data) {++constructed;} in A() function
23 ~A() {--constructed;} in ~A() argument
24 A(const A& a) : data_(a.data_) {++constructed;} in A() argument
H A Dmake_exception_ptr.pass.cpp17 struct A struct
22 A(int data = 0) : data_(data) {++constructed;} in A() function
23 ~A() {--constructed;} in ~A() argument
24 A(const A& a) : data_(a.data_) {++constructed;} in A() function
/minix3/external/bsd/libc++/dist/libcxx/test/language.support/support.exception/propagation/
H A Drethrow_exception.pass.cpp17 struct A struct
22 A(int data = 0) : data_(data) {++constructed;} in A() argument
23 ~A() {--constructed;} in ~A() argument
24 A(const A& a) : data_(a.data_) {++constructed;} in A() function
H A Dmake_exception_ptr.pass.cpp17 struct A struct
22 A(int data = 0) : data_(data) {++constructed;} in A() argument
23 ~A() {--constructed;} in ~A() argument
24 A(const A& a) : data_(a.data_) {++constructed;} in A() argument
/minix3/external/bsd/libc++/dist/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
H A Dnullptr_t_deleter_allocator_throw.pass.cpp19 struct A struct
23 A() {++count;} in A() function
24 A(const A&) {++count;} in A() function
25 ~A() {--count;} in ~A() argument
/minix3/external/bsd/libc++/dist/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
H A Dnullptr_t_deleter_allocator_throw.pass.cpp19 struct A struct
23 A() {++count;} in A() argument
24 A(const A&) {++count;} in A() argument
25 ~A() {--count;} in ~A() argument
/minix3/external/bsd/libc++/dist/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/
H A Dnull_asgn.pass.cpp21 struct A struct
24 A() {++count;} in A() argument
25 A(const A&) {++count;} in A() argument
26 ~A() {--count;} in ~A() argument
/minix3/external/bsd/libc++/dist/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
H A Dnull.pass.cpp21 struct A struct
24 A() {++count;} in A() function
25 A(const A&) {++count;} in A() argument
26 ~A() {--count;} in ~A() argument
H A Dnullptr.pass.cpp21 struct A struct
24 A() {++count;} in A() argument
25 A(const A&) {++count;} in A() argument
26 ~A() {--count;} in ~A() argument
/minix3/external/bsd/libc++/dist/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
H A Dnull_asgn.pass.cpp21 struct A struct
24 A() {++count;} in A() function
25 A(const A&) {++count;} in A() argument
26 ~A() {--count;} in ~A() argument
H A Dnullptr_asgn.pass.cpp21 struct A struct
24 A() {++count;} in A() argument
25 A(const A&) {++count;} in A() function
26 ~A() {--count;} in ~A() argument
/minix3/external/bsd/libc++/dist/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
H A Dnullptr.pass.cpp21 struct A struct
24 A() {++count;} in A() argument
25 A(const A&) {++count;} in A() function
26 ~A() {--count;} in ~A() argument
H A Dnull.pass.cpp21 struct A struct
24 A() {++count;} in A() function
25 A(const A&) {++count;} in A() function
26 ~A() {--count;} in ~A() argument

12345678910>>...105