HomeSort by relevance Sort by last modified time
    Searched full:a_constructed (Results 26 - 49 of 49) sorted by null

12

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/new.delete/new.delete.single/
new_nothrow.pass.cpp 25 bool A_constructed = false;
29 A() {A_constructed = true;}
30 ~A() {A_constructed = false;}
48 assert(A_constructed);
50 assert(!A_constructed);
new_nothrow_replace.pass.cpp 32 bool A_constructed = false;
36 A() {A_constructed = true;}
37 ~A() {A_constructed = false;}
44 assert(A_constructed);
47 assert(!A_constructed);
new_replace.pass.cpp 32 bool A_constructed = false;
36 A() {A_constructed = true;}
37 ~A() {A_constructed = false;}
44 assert(A_constructed);
47 assert(!A_constructed);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.array/
new_array.pass.cpp 29 int A_constructed = 0;
33 A() {++A_constructed;}
34 ~A() {--A_constructed;}
56 assert(A_constructed == 3);
58 assert(A_constructed == 0);
new_array_nothrow.pass.cpp 29 int A_constructed = 0;
33 A() {++A_constructed;}
34 ~A() {--A_constructed;}
52 assert(A_constructed == 3);
54 assert(A_constructed == 0);
new_array_nothrow_replace.pass.cpp 34 volatile int A_constructed = 0;
38 A() {++A_constructed;}
39 ~A() {--A_constructed;}
46 assert(A_constructed == 3);
49 assert(A_constructed == 0);
new_array_replace.pass.cpp 34 int A_constructed = 0;
38 A() {++A_constructed;}
39 ~A() {--A_constructed;}
46 assert(A_constructed == 3);
49 assert(A_constructed == 0);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.single/
new.pass.cpp 29 bool A_constructed = false;
33 A() {A_constructed = true;}
34 ~A() {A_constructed = false;}
56 assert(A_constructed);
58 assert(!A_constructed);
new_nothrow.pass.cpp 29 bool A_constructed = false;
33 A() {A_constructed = true;}
34 ~A() {A_constructed = false;}
52 assert(A_constructed);
54 assert(!A_constructed);
new_nothrow_replace.pass.cpp 34 bool A_constructed = false;
38 A() {A_constructed = true;}
39 ~A() {A_constructed = false;}
46 assert(A_constructed);
49 assert(!A_constructed);
new_replace.pass.cpp 34 bool A_constructed = false;
38 A() {A_constructed = true;}
39 ~A() {A_constructed = false;}
46 assert(A_constructed);
49 assert(!A_constructed);
  /external/libcxx/test/std/utilities/memory/storage.iterator/
raw_storage_iterator.base.pass.cpp 18 int A_constructed = 0;
24 explicit A(int i) : data_(i) {++A_constructed;}
26 A(const A& a) : data_(a.data_) {++A_constructed;}
27 ~A() {--A_constructed; data_ = 0;}
39 assert(A_constructed == 0);
46 assert(A_constructed == i+1);
raw_storage_iterator.pass.cpp 19 int A_constructed = 0;
25 explicit A(int i) : data_(i) {++A_constructed;}
27 A(const A& a) : data_(a.data_) {++A_constructed;}
28 ~A() {--A_constructed; data_ = 0;}
41 assert(A_constructed == 0);
47 assert(A_constructed == i+1);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/storage.iterator/
raw_storage_iterator.base.pass.cpp 16 int A_constructed = 0;
22 explicit A(int i) : data_(i) {++A_constructed;}
24 A(const A& a) : data_(a.data_) {++A_constructed;}
25 ~A() {--A_constructed; data_ = 0;}
37 assert(A_constructed == 0);
44 assert(A_constructed == i+1);
raw_storage_iterator.pass.cpp 18 int A_constructed = 0;
24 explicit A(int i) : data_(i) {++A_constructed;}
26 A(const A& a) : data_(a.data_) {++A_constructed;}
27 ~A() {--A_constructed; data_ = 0;}
40 assert(A_constructed == 0);
46 assert(A_constructed == i+1);
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.placement/
new_array.pass.cpp 15 int A_constructed = 0;
19 A() {++A_constructed;}
20 ~A() {--A_constructed;}
33 assert(A_constructed == Size);
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/
new_align_val_t.pass.cpp 38 int A_constructed = 0;
42 A() { ++A_constructed;}
43 ~A() { --A_constructed;}
73 assert(A_constructed == 2);
75 assert(A_constructed == 0);
new_align_val_t_nothrow.pass.cpp 38 int A_constructed = 0;
42 A() { ++A_constructed; }
43 ~A() { --A_constructed; }
75 assert(A_constructed == 3);
77 assert(!A_constructed);
new_align_val_t_nothrow_replace.pass.cpp 27 int A_constructed = 0;
31 A() {++A_constructed;}
32 ~A() {--A_constructed;}
68 assert(A_constructed == 2);
71 assert(A_constructed == 0);
new_align_val_t_replace.pass.cpp 28 int A_constructed = 0;
31 A() { ++A_constructed;}
32 ~A() { --A_constructed;}
71 assert(A_constructed == 3);
74 assert(!A_constructed);
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
new_align_val_t.pass.cpp 38 bool A_constructed = false;
42 A() {A_constructed = true;}
43 ~A() {A_constructed = false;}
73 assert(A_constructed);
75 assert(!A_constructed);
new_align_val_t_nothrow.pass.cpp 38 bool A_constructed = false;
42 A() {A_constructed = true;}
43 ~A() {A_constructed = false;}
75 assert(A_constructed);
77 assert(!A_constructed);
new_align_val_t_nothrow_replace.pass.cpp 27 bool A_constructed = false;
31 A() {A_constructed = true;}
32 ~A() {A_constructed = false;}
69 assert(A_constructed);
72 assert(!A_constructed);
new_align_val_t_replace.pass.cpp 28 bool A_constructed = false;
31 A() {A_constructed = true;}
32 ~A() {A_constructed = false;}
71 assert(A_constructed);
74 assert(!A_constructed);

Completed in 791 milliseconds

12