| /external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.destroy/ |
| D | destroy.pass.cpp | 24 struct Counted { struct 27 Counted() { ++count; } in Counted() argument 28 Counted(Counted const&) { ++count; } in Counted() argument 29 ~Counted() { --count; } in ~Counted() argument
|
| D | destroy_n.pass.cpp | 24 struct Counted { struct 27 Counted() { ++count; } in Counted() function 28 Counted(Counted const&) { ++count; } in Counted() argument 29 ~Counted() { --count; } in ~Counted() argument
|
| D | destroy_at.pass.cpp | 21 struct Counted { struct 24 Counted() { ++count; } in Counted() argument 25 Counted(Counted const&) { ++count; } in Counted() function 26 ~Counted() { --count; } in ~Counted() argument
|
| /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ |
| D | uninitialized_move_n.pass.cpp | 24 struct Counted { struct 28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; } in Counted() argument 29 Counted(Counted const&) { assert(false); } in Counted() argument 30 ~Counted() { assert(count > 0); --count; } in ~Counted() argument 34 int Counted::count = 0; argument
|
| D | uninitialized_move.pass.cpp | 24 struct Counted { struct 28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; } in Counted() argument 29 Counted(Counted const&) { assert(false); } in Counted() function 30 ~Counted() { assert(count > 0); --count; } in ~Counted() argument 34 int Counted::count = 0; argument
|
| /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ |
| D | uninitialized_value_construct.pass.cpp | 24 struct Counted { struct 28 explicit Counted() { ++count; ++constructed; } in Counted() argument 29 Counted(Counted const&) { assert(false); } in Counted() argument 30 ~Counted() { assert(count > 0); --count; } in ~Counted() argument
|
| D | uninitialized_value_construct_n.pass.cpp | 24 struct Counted { struct 28 explicit Counted() { ++count; ++constructed; } in Counted() argument 29 Counted(Counted const&) { assert(false); } in Counted() function 30 ~Counted() { --count; } in ~Counted() argument
|
| /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ |
| D | uninitialized_default_construct.pass.cpp | 24 struct Counted { struct 28 explicit Counted() { ++count; ++constructed; } in Counted() argument 29 Counted(Counted const&) { assert(false); } in Counted() argument 30 ~Counted() { --count; } in ~Counted() argument
|
| D | uninitialized_default_construct_n.pass.cpp | 24 struct Counted { struct 28 explicit Counted() { ++count; ++constructed; } in Counted() argument 29 Counted(Counted const&) { assert(false); } in Counted() argument 30 ~Counted() { assert(count > 0); --count; } in ~Counted() argument
|
| /external/python/cpython2/Lib/test/ |
| D | test_descr.py | 1101 class Counted(object): class
|
| /external/python/cpython3/Lib/test/ |
| D | test_descr.py | 1230 class Counted(object): class
|