Home
last modified time | relevance | path

Searched refs:print_move_created (Results 1 – 12 of 12) sorted by relevance

/external/python/pybind11/tests/
Dtest_factory_constructors.cpp38 TestFactory2(TestFactory2 &&m) { value = std::move(m.value); print_move_created(this); } in TestFactory2()
51 TestFactory3(TestFactory3 &&m) { value = std::move(m.value); print_move_created(this); } in TestFactory3()
76 TestFactory6(TestFactory6 &&f) { print_move_created(this); value = f.value; alias = f.alias; } in TestFactory6()
88 PyTF6(PyTF6 &&f) : TestFactory6(std::move(f)) { print_move_created(this); } in PyTF6()
101 TestFactory7(TestFactory7 &&f) { print_move_created(this); value = f.value; alias = f.alias; } in TestFactory7()
110 PyTF7(PyTF7 &&f) : TestFactory7(std::move(f)) { print_move_created(this); } in PyTF7()
Dtest_virtual_functions.cpp20 ExampleVirt(ExampleVirt &&e) : state(e.state) { print_move_created(this); e.state = 0; } in ExampleVirt()
103 NonCopyable(NonCopyable &&o) { value = std::move(o.value); print_move_created(this); } in NonCopyable()
123 Movable(Movable &&m) { value = std::move(m.value); print_move_created(this); } in Movable()
Dtest_smart_ptr.cpp262 A(A &&) { print_move_created(this); } in TEST_SUBMODULE()
287 B(B &&) : std::enable_shared_from_this<B>() { print_move_created(this); } in TEST_SUBMODULE()
332 TypeForHolderWithAddressOf(TypeForHolderWithAddressOf &&) { print_move_created(this); } in TEST_SUBMODULE()
Dtest_copy_move.cpp41 MoveOnlyInt(MoveOnlyInt &&m) { print_move_created(this, m.value); std::swap(value, m.value); } in MoveOnlyInt()
53 … MoveOrCopyInt(MoveOrCopyInt &&m) { print_move_created(this, m.value); std::swap(value, m.value); } in MoveOrCopyInt()
Dobject.h87 print_move_created(this, "with pointer", m_ptr); track_move_created((ref_tag*) this); in ref()
Dtest_custom_type_casters.cpp70 DestructionTester(DestructionTester &&) { print_move_created(this); } in DestructionTester()
Dtest_callbacks.cpp83 Payload(Payload &&) { print_move_created(this); } in TEST_SUBMODULE()
Dtest_buffers.cpp31 print_move_created(this); in TEST_SUBMODULE()
Dconstructor_stats.h248 template <class T, typename... Values> void print_move_created(T *inst, Values &&...values) { // NB… in print_move_created() function
Dtest_operator_overloading.cpp19 Vector2(Vector2 &&v) : x(v.x), y(v.y) { print_move_created(this); v.x = v.y = 0; } in Vector2()
Dtest_sequences_and_iterators.cpp115 print_move_created(this); in TEST_SUBMODULE()
Dtest_methods_and_attributes.cpp25 ExampleMandA(ExampleMandA &&e) : value(e.value) { print_move_created(this); } in ExampleMandA()