Searched refs:print_copy_created (Results 1 – 13 of 13) sorted by relevance
25 A(const A&) { print_copy_created(this); } in TEST_SUBMODULE()39 B(const B&) { print_copy_created(this); } in TEST_SUBMODULE()
14 Object(const Object &) : m_refCount(0) { print_copy_created(this); } in Object()80 print_copy_created(this, "with pointer", m_ptr); track_copy_created((ref_tag*) this); in ref()
77 …TestFactory6(const TestFactory6 &f) { print_copy_created(this); value = f.value; alias = f.alias; } in TestFactory6()89 PyTF6(const PyTF6 &f) : TestFactory6(f) { print_copy_created(this); } in PyTF6()102 …TestFactory7(const TestFactory7 &f) { print_copy_created(this); value = f.value; alias = f.alias; } in TestFactory7()111 PyTF7(const PyTF7 &f) : TestFactory7(f) { print_copy_created(this); } in PyTF7()
261 A(const A &) { print_copy_created(this); } in TEST_SUBMODULE()286 B(const B &) : std::enable_shared_from_this<B>() { print_copy_created(this); } in TEST_SUBMODULE()331 TypeForHolderWithAddressOf(const TypeForHolderWithAddressOf &) { print_copy_created(this); } in TEST_SUBMODULE()
55 MoveOrCopyInt(const MoveOrCopyInt &c) { print_copy_created(this, c.value); value = c.value; } in MoveOrCopyInt()65 CopyOnlyInt(const CopyOnlyInt &c) { print_copy_created(this, c.value); value = c.value; } in CopyOnlyInt()
69 DestructionTester(const DestructionTester &) { print_copy_created(this); } in DestructionTester()
82 Payload(const Payload &) { print_copy_created(this); } in TEST_SUBMODULE()
19 ExampleVirt(const ExampleVirt &e) : state(e.state) { print_copy_created(this); } in ExampleVirt()122 Movable(const Movable &m) { value = m.value; print_copy_created(this); } in Movable()
25 … print_copy_created(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); in TEST_SUBMODULE()
244 template <class T, typename... Values> void print_copy_created(T *inst, Values &&...values) { // NB… in print_copy_created() function
18 Vector2(const Vector2 &v) : x(v.x), y(v.y) { print_copy_created(this); } in Vector2()
110 print_copy_created(this); in TEST_SUBMODULE()
23 ExampleMandA(const ExampleMandA &e) : value(e.value) { print_copy_created(this); } in ExampleMandA()