Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_modules.cpp26 A& operator=(const A &copy) { print_copy_assigned(this); v = copy.v; return *this; } in TEST_SUBMODULE()
40 …B& operator=(const B &copy) { print_copy_assigned(this); a1 = copy.a1; a2 = copy.a2; return *this;… in TEST_SUBMODULE()
Dtest_copy_move.cpp56 …MoveOrCopyInt &operator=(const MoveOrCopyInt &c) { print_copy_assigned(this, c.value); value = c.v… in operator =()
66 …CopyOnlyInt &operator=(const CopyOnlyInt &c) { print_copy_assigned(this, c.value); value = c.value… in operator =()
Dobject.h113 print_copy_assigned(this, "pointer", r.m_ptr); track_copy_assigned((ref_tag*) this);
Dtest_custom_type_casters.cpp71 …DestructionTester &operator=(const DestructionTester &) { print_copy_assigned(this); return *this;… in operator =()
Dtest_buffers.cpp43print_copy_assigned(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); in TEST_SUBMODULE()
Dconstructor_stats.h252 template <class T, typename... Values> void print_copy_assigned(T *inst, Values &&...values) { in print_copy_assigned() function
Dtest_operator_overloading.cpp20 …Vector2 &operator=(const Vector2 &v) { x = v.x; y = v.y; print_copy_assigned(this); return *this; } in operator =()
Dtest_sequences_and_iterators.cpp129 print_copy_assigned(this); in TEST_SUBMODULE()
Dtest_methods_and_attributes.cpp32 void operator=(const ExampleMandA &e) { print_copy_assigned(this); value = e.value; } in operator =()