Searched refs:print_move_created (Results 1 – 12 of 12) sorted by relevance
38 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()
20 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()
262 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()
41 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()
87 print_move_created(this, "with pointer", m_ptr); track_move_created((ref_tag*) this); in ref()
70 DestructionTester(DestructionTester &&) { print_move_created(this); } in DestructionTester()
83 Payload(Payload &&) { print_move_created(this); } in TEST_SUBMODULE()
31 print_move_created(this); in TEST_SUBMODULE()
248 template <class T, typename... Values> void print_move_created(T *inst, Values &&...values) { // NB… in print_move_created() function
19 Vector2(Vector2 &&v) : x(v.x), y(v.y) { print_move_created(this); v.x = v.y = 0; } in Vector2()
115 print_move_created(this); in TEST_SUBMODULE()
25 ExampleMandA(ExampleMandA &&e) : value(e.value) { print_move_created(this); } in ExampleMandA()