Searched refs:print_move_assigned (Results 1 - 8 of 8) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dobject.h100 print_move_assigned(this, "pointer", r.m_ptr); track_move_assigned((ref_tag*) this);
H A Dtest_copy_move.cpp42 MoveOnlyInt &operator=(MoveOnlyInt &&m) { print_move_assigned(this, m.value); std::swap(value, m.value); return *this; }
54 MoveOrCopyInt &operator=(MoveOrCopyInt &&m) { print_move_assigned(this, m.value); std::swap(value, m.value); return *this; }
H A Dtest_buffers.cpp52 print_move_assigned(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix");
H A Dtest_operator_overloading.cpp21 Vector2 &operator=(Vector2 &&v) { x = v.x; y = v.y; v.x = v.y = 0; print_move_assigned(this); return *this; }
H A Dtest_methods_and_attributes.cpp32 void operator=(ExampleMandA &&e) { print_move_assigned(this); value = e.value; }
165 DestructionTester &operator=(DestructionTester &&) { print_move_assigned(this); return *this; }
H A Dtest_factory_constructors.cpp38 TestFactory2 &operator=(TestFactory2 &&m) { value = std::move(m.value); print_move_assigned(this); return *this; }
51 TestFactory3 &operator=(TestFactory3 &&m) { value = std::move(m.value); print_move_assigned(this); return *this; }
H A Dconstructor_stats.h22 MyClass &operator=(MyClass &&c) { ...; print_move_assigned(this); }
256 template <class T, typename... Values> void print_move_assigned(T *inst, Values &&...values) { function
H A Dtest_sequences_and_iterators.cpp139 print_move_assigned(this);

Completed in 22 milliseconds