Searched refs:print_copy_assigned (Results 1 – 9 of 9) sorted by relevance
26 A& operator=(const A ©) { print_copy_assigned(this); v = copy.v; return *this; } in TEST_SUBMODULE()40 …B& operator=(const B ©) { print_copy_assigned(this); a1 = copy.a1; a2 = copy.a2; return *this;… in TEST_SUBMODULE()
56 …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 =()
113 print_copy_assigned(this, "pointer", r.m_ptr); track_copy_assigned((ref_tag*) this);
71 …DestructionTester &operator=(const DestructionTester &) { print_copy_assigned(this); return *this;… in operator =()
43 … print_copy_assigned(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); in TEST_SUBMODULE()
252 template <class T, typename... Values> void print_copy_assigned(T *inst, Values &&...values) { in print_copy_assigned() function
20 …Vector2 &operator=(const Vector2 &v) { x = v.x; y = v.y; print_copy_assigned(this); return *this; } in operator =()
129 print_copy_assigned(this); in TEST_SUBMODULE()
32 void operator=(const ExampleMandA &e) { print_copy_assigned(this); value = e.value; } in operator =()