Home
last modified time | relevance | path

Searched refs:print_destroyed (Results 1 – 16 of 16) sorted by relevance

/external/python/pybind11/tests/
Dtest_smart_ptr.cpp103 ~MyObject1() override { print_destroyed(this); } in TEST_SUBMODULE()
134 virtual ~MyObject2() { print_destroyed(this); } in TEST_SUBMODULE()
153 virtual ~MyObject3() { print_destroyed(this); } in TEST_SUBMODULE()
198 print_destroyed(this); in TEST_SUBMODULE()
229 print_destroyed(this); in TEST_SUBMODULE()
241 ~MyObject4b() override { print_destroyed(this); } in TEST_SUBMODULE()
250 ~MyObject5() { print_destroyed(this); } in TEST_SUBMODULE()
263 ~A() { print_destroyed(this); } in TEST_SUBMODULE()
288 ~B() { print_destroyed(this); } in TEST_SUBMODULE()
322 ~C() { print_destroyed(this); } in TEST_SUBMODULE()
[all …]
Dtest_factory_constructors.cpp29 ~TestFactory1() { print_destroyed(this); } in ~TestFactory1()
41 ~TestFactory2() { print_destroyed(this); } in ~TestFactory2()
54 virtual ~TestFactory3() { print_destroyed(this); } in ~TestFactory3()
61 ~TestFactory4() override { print_destroyed(this); } in ~TestFactory4()
67 ~TestFactory5() override { print_destroyed(this); } in ~TestFactory5()
78 virtual ~TestFactory6() { print_destroyed(this); } in ~TestFactory6()
91 ~PyTF6() override { print_destroyed(this); } in ~PyTF6()
103 virtual ~TestFactory7() { print_destroyed(this); } in ~TestFactory7()
112 ~PyTF7() override { print_destroyed(this); } in ~PyTF7()
Dtest_modules.cpp24 ~A() { print_destroyed(this); } in TEST_SUBMODULE()
38 ~B() { print_destroyed(this); } in TEST_SUBMODULE()
Dobject.h41 virtual ~Object() { print_destroyed(this); } in ~Object()
95 print_destroyed(this); track_destroyed((ref_tag*) this); in ~ref()
Dtest_copy_move.cpp45 ~MoveOnlyInt() { print_destroyed(this); } in ~MoveOnlyInt()
57 ~MoveOrCopyInt() { print_destroyed(this); } in ~MoveOrCopyInt()
67 ~CopyOnlyInt() { print_destroyed(this); } in ~CopyOnlyInt()
Dtest_virtual_functions.cpp21 virtual ~ExampleVirt() { print_destroyed(this); } in ~ExampleVirt()
111 ~NonCopyable() { print_destroyed(this); } in ~NonCopyable()
125 ~Movable() { print_destroyed(this); } in ~Movable()
Dtest_custom_type_casters.cpp68 ~DestructionTester() { print_destroyed(this); } in ~DestructionTester()
Dtest_callbacks.cpp81 ~Payload() { print_destroyed(this); } in TEST_SUBMODULE()
Dtest_methods_and_attributes.cpp26 ~ExampleMandA() { print_destroyed(this); } in ~ExampleMandA()
299 ~DynamicClass() { print_destroyed(this); } in TEST_SUBMODULE()
Dtest_buffers.cpp38print_destroyed(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); in TEST_SUBMODULE()
Dconstructor_stats.h268 template <class T, typename... Values> void print_destroyed(T *inst, Values &&...values) { // Print… in print_destroyed() function
Dtest_operator_overloading.cpp22 ~Vector2() { print_destroyed(this); } in ~Vector2()
Dtest_stl.cpp298 ~Placeholder() { print_destroyed(this); } in TEST_SUBMODULE()
Dtest_sequences_and_iterators.cpp120 ~Sequence() { print_destroyed(this); delete[] m_data; } in TEST_SUBMODULE()
Dtest_eigen.cpp177 ~ReturnTester() { print_destroyed(this); } in TEST_SUBMODULE()
Dtest_class.cpp46 ~NoConstructor() { print_destroyed(this); } in TEST_SUBMODULE()