Home
last modified time | relevance | path

Searched refs:print_move_assigned (Results 1 – 9 of 9) sorted by relevance

/external/python/pybind11/tests/
Dtest_copy_move.cpp42 …MoveOnlyInt &operator=(MoveOnlyInt &&m) { print_move_assigned(this, m.value); std::swap(value, m.v… in operator =()
54 …MoveOrCopyInt &operator=(MoveOrCopyInt &&m) { print_move_assigned(this, m.value); std::swap(value,… in operator =()
Dobject.h100 print_move_assigned(this, "pointer", r.m_ptr); track_move_assigned((ref_tag*) this);
Dtest_custom_type_casters.cpp72 DestructionTester &operator=(DestructionTester &&) { print_move_assigned(this); return *this; } in operator =()
Dtest_factory_constructors.cpp39 …TestFactory2 &operator=(TestFactory2 &&m) { value = std::move(m.value); print_move_assigned(this);… in operator =()
52 …TestFactory3 &operator=(TestFactory3 &&m) { value = std::move(m.value); print_move_assigned(this);… in operator =()
Dtest_buffers.cpp53print_move_assigned(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); in TEST_SUBMODULE()
Dconstructor_stats.h256 template <class T, typename... Values> void print_move_assigned(T *inst, Values &&...values) { in print_move_assigned() function
Dtest_operator_overloading.cpp21 …Vector2 &operator=(Vector2 &&v) { x = v.x; y = v.y; v.x = v.y = 0; print_move_assigned(this); retu… in operator =()
Dtest_sequences_and_iterators.cpp141 print_move_assigned(this); in TEST_SUBMODULE()
Dtest_methods_and_attributes.cpp33 void operator=(ExampleMandA &&e) { print_move_assigned(this); value = e.value; } in operator =()