Home
last modified time | relevance | path

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

12345678910>>...29

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/
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() argument
84 A(const A& a) : i(a.i) {} in A() argument
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
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() function
79 A(const A& a) : i(a.i) {} in A() function
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
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() function
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
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() function
82 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
Dallocate_shared.pass.cpp25 struct A struct
29 A(int i, char c) : int_(i), char_(c) {++count;} in A() argument
30 A(const A& a) in A() function
33 ~A() {--count;} in ~A() argument
42 int A::count = 0; argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.modifiers/
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() argument
28 A& operator=(const A& a) {state_ = a.state_; return *this;} in operator =() argument
29 ~A() {--count;} in ~A() argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/propagation/
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
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() function
/ndk/tests/device/test-stlport_shared-exception/jni/
Drethrow5.cpp8 struct A struct
11 A () { i = ++c; printf ("A() %d\n", i); } in A() argument
12 A (const A&) { i = ++c; printf ("A(const A&) %d\n", i); } in A() function
13 ~A() { printf ("~A() %d\n", i); ++d; } in ~A() argument
Drethrow1.cpp8 struct A struct
11 A () { i = ++c; printf ("A() %d\n", i); } in A() argument
12 A (const A&) { i = ++c; printf ("A(const A&) %d\n", i); } in A() argument
13 ~A() { printf ("~A() %d\n", i); ++d; } in ~A() argument
Drethrow4.cpp8 struct A struct
11 A () { i = ++c; printf ("A() %d\n", i); } in A() function
12 A (const A&) { i = ++c; printf ("A(const A&) %d\n", i); } in A() function
13 ~A() { printf ("~A() %d\n", i); ++d; } in ~A() argument
Drethrow2.cpp8 struct A struct
11 A () { i = ++c; printf ("A() %d\n", i); } in A() argument
12 A (const A&) { i = ++c; printf ("A(const A&) %d\n", i); } in A() argument
13 ~A() { printf ("~A() %d\n", i); ++d; } in ~A() argument
/ndk/tests/device/test-stlport_static-exception/jni/
Drethrow4.cpp8 struct A struct
11 A () { i = ++c; printf ("A() %d\n", i); } in A() argument
12 A (const A&) { i = ++c; printf ("A(const A&) %d\n", i); } in A() argument
13 ~A() { printf ("~A() %d\n", i); ++d; } in ~A() argument
Drethrow5.cpp8 struct A struct
11 A () { i = ++c; printf ("A() %d\n", i); } in A() argument
12 A (const A&) { i = ++c; printf ("A(const A&) %d\n", i); } in A() function
13 ~A() { printf ("~A() %d\n", i); ++d; } in ~A() argument
Drethrow2.cpp8 struct A struct
11 A () { i = ++c; printf ("A() %d\n", i); } in A() argument
12 A (const A&) { i = ++c; printf ("A(const A&) %d\n", i); } in A() argument
13 ~A() { printf ("~A() %d\n", i); ++d; } in ~A() argument
Drethrow1.cpp8 struct A struct
11 A () { i = ++c; printf ("A() %d\n", i); } in A() argument
12 A (const A&) { i = ++c; printf ("A(const A&) %d\n", i); } in A() argument
13 ~A() { printf ("~A() %d\n", i); ++d; } in ~A() argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
Dnullptr_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
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
Dmove02.fail.cpp21 struct A struct
24 A() {++count;} in A() argument
25 A(const A&) {++count;} in A() function
26 ~A() {--count;} in ~A() argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
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
Dnull.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
Dmove02.fail.cpp21 struct A struct
24 A() {++count;} in A() argument
25 A(const A&) {++count;} in A() argument
26 ~A() {--count;} in ~A() argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
Dnullptr_t_deleter_allocator_throw.pass.cpp19 struct A struct
23 A() {++count;} in A() argument
24 A(const A&) {++count;} in A() function
25 ~A() {--count;} in ~A() argument
Dpointer_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
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/
Ddefault.pass.cpp17 struct A struct
20 A() {++count;} in A() function
21 A(const A&) {++count;} in A() argument
22 ~A() {--count;} in ~A() argument

12345678910>>...29