/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/ |
D | atomic_fetch_add_explicit.pass.cpp | 37 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() function 86 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
|
D | atomic_fetch_sub_explicit.pass.cpp | 38 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
|
D | atomic_fetch_sub.pass.cpp | 37 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() 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
|
D | atomic_fetch_add.pass.cpp | 37 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/ |
D | allocate_shared.pass.cpp | 25 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/ |
D | swap.pass.cpp | 21 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
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/propagation/ |
D | make_exception_ptr.pass.cpp | 17 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
|
D | rethrow_exception.pass.cpp | 17 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
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | rethrow4.cpp | 8 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
|
D | rethrow2.cpp | 8 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
|
D | rethrow5.cpp | 8 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
|
D | rethrow1.cpp | 8 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_shared-exception/jni/ |
D | rethrow4.cpp | 8 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
|
D | rethrow1.cpp | 8 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
|
D | rethrow2.cpp | 8 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
|
D | rethrow5.cpp | 8 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
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
D | nullptr_t_deleter_allocator_throw.pass.cpp | 19 struct A struct 23 A() {++count;} in A() argument 24 A(const A&) {++count;} in A() function 25 ~A() {--count;} in ~A() argument
|
D | nullptr_t_deleter.pass.cpp | 20 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.runtime/ |
D | null_asgn.pass.cpp | 21 struct A struct 24 A() {++count;} in A() argument 25 A(const A&) {++count;} in A() argument 26 ~A() {--count;} in ~A() argument
|
D | nullptr_asgn.pass.cpp | 21 struct A struct 24 A() {++count;} in A() function 25 A(const A&) {++count;} in A() argument 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/ |
D | nullptr.pass.cpp | 21 struct A struct 24 A() {++count;} in A() argument 25 A(const A&) {++count;} in A() argument 26 ~A() {--count;} in ~A() argument
|
D | null.pass.cpp | 21 struct A struct 24 A() {++count;} in A() function 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.dltr/unique.ptr.dltr.dflt1/ |
D | default.pass.cpp | 19 struct A struct 22 A() {++count;} in A() argument 23 A(const A&) {++count;} in A() argument 24 ~A() {--count;} in ~A() argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/ |
D | reset.pass.cpp | 19 struct A struct 23 A() {++count;} in A() argument 24 A(const A&) {++count;} in A() function 25 ~A() {--count;} in ~A() argument
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/ |
D | pointer_deleter01.pass.cpp | 23 struct A struct 26 A() {++count;} in A() argument 27 A(const A&) {++count;} in A() function 28 ~A() {--count;} in ~A() argument
|