Searched refs:print_copy_created (Results 1 - 12 of 12) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_modules.cpp24 A(const A&) { print_copy_created(this); }
38 B(const B&) { print_copy_created(this); }
H A Dobject.h14 Object(const Object &) : m_refCount(0) { print_copy_created(this); }
80 print_copy_created(this, "with pointer", m_ptr); track_copy_created((ref_tag*) this);
H A Dtest_smart_ptr.cpp230 A(const A &) { print_copy_created(this); }
255 B(const B &) : std::enable_shared_from_this<B>() { print_copy_created(this); }
299 TypeForHolderWithAddressOf(const TypeForHolderWithAddressOf &) { print_copy_created(this); }
H A Dtest_factory_constructors.cpp76 TestFactory6(const TestFactory6 &f) { print_copy_created(this); value = f.value; alias = f.alias; }
88 PyTF6(const PyTF6 &f) : TestFactory6(f) { print_copy_created(this); }
101 TestFactory7(const TestFactory7 &f) { print_copy_created(this); value = f.value; alias = f.alias; }
110 PyTF7(const PyTF7 &f) : TestFactory7(f) { print_copy_created(this); }
H A Dtest_copy_move.cpp55 MoveOrCopyInt(const MoveOrCopyInt &c) { print_copy_created(this, c.value); value = c.value; }
65 CopyOnlyInt(const CopyOnlyInt &c) { print_copy_created(this, c.value); value = c.value; }
H A Dtest_virtual_functions.cpp19 ExampleVirt(const ExampleVirt &e) : state(e.state) { print_copy_created(this); }
122 Movable(const Movable &m) { value = m.value; print_copy_created(this); }
H A Dtest_buffers.cpp24 print_copy_created(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix");
H A Dtest_callbacks.cpp82 Payload(const Payload &) { print_copy_created(this); }
H A Dtest_operator_overloading.cpp18 Vector2(const Vector2 &v) : x(v.x), y(v.y) { print_copy_created(this); }
H A Dtest_methods_and_attributes.cpp23 ExampleMandA(const ExampleMandA &e) : value(e.value) { print_copy_created(this); }
162 DestructionTester(const DestructionTester &) { print_copy_created(this); }
H A Dconstructor_stats.h18 MyClass(const MyClass &c) { ...; print_copy_created(this); }
244 template <class T, typename... Values> void print_copy_created(T *inst, Values &&...values) { // NB: this prints, but doesn't store, given values function
H A Dtest_sequences_and_iterators.cpp108 print_copy_created(this);

Completed in 23 milliseconds