Home
last modified time | relevance | path

Searched refs:print_copy_created (Results 1 – 13 of 13) sorted by relevance

/external/python/pybind11/tests/
Dtest_modules.cpp25 A(const A&) { print_copy_created(this); } in TEST_SUBMODULE()
39 B(const B&) { print_copy_created(this); } in TEST_SUBMODULE()
Dobject.h14 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()
Dtest_factory_constructors.cpp77 …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()
Dtest_smart_ptr.cpp261 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()
Dtest_copy_move.cpp55 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()
Dtest_custom_type_casters.cpp69 DestructionTester(const DestructionTester &) { print_copy_created(this); } in DestructionTester()
Dtest_callbacks.cpp82 Payload(const Payload &) { print_copy_created(this); } in TEST_SUBMODULE()
Dtest_virtual_functions.cpp19 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()
Dtest_buffers.cpp25print_copy_created(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); in TEST_SUBMODULE()
Dconstructor_stats.h244 template <class T, typename... Values> void print_copy_created(T *inst, Values &&...values) { // NB… in print_copy_created() function
Dtest_operator_overloading.cpp18 Vector2(const Vector2 &v) : x(v.x), y(v.y) { print_copy_created(this); } in Vector2()
Dtest_sequences_and_iterators.cpp110 print_copy_created(this); in TEST_SUBMODULE()
Dtest_methods_and_attributes.cpp23 ExampleMandA(const ExampleMandA &e) : value(e.value) { print_copy_created(this); } in ExampleMandA()