Searched refs:print_created (Results 1 - 14 of 14) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_smart_ptr.cpp99 MyObject1(int value) : value(value) { print_created(this, toString()); }
131 MyObject2(int value) : value(value) { print_created(this, toString()); }
150 MyObject3(int value) : value(value) { print_created(this, toString()); }
180 MyObject4(int value) : value{value} { print_created(this); }
196 print_created(this);
209 MyObject4b(int i) : MyObject4a(i) { print_created(this); }
218 MyObject5(int value) : value{value} { print_created(this); }
229 A() { print_created(this); }
254 B() { print_created(this); }
290 C() { print_created(thi
[all...]
H A Dtest_factory_constructors.cpp20 TestFactory1(int v) : value(std::to_string(v)) { print_created(this, value); }
21 TestFactory1(std::string v) : value(std::move(v)) { print_created(this, value); }
34 TestFactory2(int v) : value(std::to_string(v)) { print_created(this, value); }
35 TestFactory2(std::string v) : value(std::move(v)) { print_created(this, value); }
47 TestFactory3(int v) : value(std::to_string(v)) { print_created(this, value); }
49 TestFactory3(std::string v) : value(std::move(v)) { print_created(this, value); }
59 TestFactory4(int v) : TestFactory3(v) { print_created(this, v); }
65 TestFactory5(int i) : TestFactory3(i) { print_created(this, i); }
74 TestFactory6(int i) : value{i} { print_created(this, i); }
85 PyTF6(TestFactory6 &&base) : TestFactory6(std::move(base)) { alias = true; print_created(thi
[all...]
H A Dtest_copy_move.cpp40 MoveOnlyInt(int v) : value{std::move(v)} { print_created(this, value); }
52 MoveOrCopyInt(int v) : value{std::move(v)} { print_created(this, value); }
64 CopyOnlyInt(int v) : value{std::move(v)} { print_created(this, value); }
H A Dtest_modules.cpp22 A(int v) : v(v) { print_created(this, v); }
H A Dtest_virtual_functions.cpp18 ExampleVirt(int state) : state(state) { print_created(this, state); }
102 NonCopyable(int a, int b) : value{new int(a*b)} { print_created(this, a, b); }
121 Movable(int a, int b) : value{a+b} { print_created(this, a, b); }
H A Dobject.h71 print_created(this, "from pointer", m_ptr); track_created((ref_tag*) this, "from pointer");
H A Dtest_sequences_and_iterators.cpp98 print_created(this, "of size", m_size);
103 print_created(this, "of size", m_size, "from std::vector");
H A Dtest_buffers.cpp18 print_created(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix");
H A Dtest_operator_overloading.cpp17 Vector2(float x, float y) : x(x), y(y) { print_created(this, toString()); }
H A Dtest_stl.cpp256 Placeholder() { print_created(this); }
H A Dconstructor_stats.h20 MyClass(int a, int b) { ...; print_created(this, a, b); }
264 template <class T, typename... Values> void print_created(T *inst, Values &&...values) { function
H A Dtest_methods_and_attributes.cpp22 ExampleMandA(int value) : value(value) { print_created(this, value); }
H A Dtest_class.cpp36 print_created(ptr, "via new_instance");
H A Dtest_eigen.cpp177 ReturnTester() { print_created(this); }

Completed in 28 milliseconds