Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_factory_constructors.cpp21 TestFactory1(int v) : value(std::to_string(v)) { print_created(this, value); } in TestFactory1()
22 TestFactory1(std::string v) : value(std::move(v)) { print_created(this, value); } in TestFactory1()
35 TestFactory2(int v) : value(std::to_string(v)) { print_created(this, value); } in TestFactory2()
36 TestFactory2(std::string v) : value(std::move(v)) { print_created(this, value); } in TestFactory2()
48 TestFactory3(int v) : value(std::to_string(v)) { print_created(this, value); } in TestFactory3()
50 TestFactory3(std::string v) : value(std::move(v)) { print_created(this, value); } in TestFactory3()
60 TestFactory4(int v) : TestFactory3(v) { print_created(this, v); } in TestFactory4()
66 TestFactory5(int i) : TestFactory3(i) { print_created(this, i); } in TestFactory5()
75 TestFactory6(int i) : value{i} { print_created(this, i); } in TestFactory6()
86 …PyTF6(TestFactory6 &&base) : TestFactory6(std::move(base)) { alias = true; print_created(this, "mo… in PyTF6()
[all …]
Dtest_smart_ptr.cpp100 MyObject1(int value) : value(value) { print_created(this, toString()); } in TEST_SUBMODULE()
132 MyObject2(int value) : value(value) { print_created(this, toString()); } in TEST_SUBMODULE()
151 MyObject3(int value) : value(value) { print_created(this, toString()); } in TEST_SUBMODULE()
184 print_created(this); in TEST_SUBMODULE()
215 print_created(this); in TEST_SUBMODULE()
240 MyObject4b(int i) : MyObject4a(i) { print_created(this); } in TEST_SUBMODULE()
249 MyObject5(int value) : value{value} { print_created(this); } in TEST_SUBMODULE()
260 A() { print_created(this); } in TEST_SUBMODULE()
285 B() { print_created(this); } in TEST_SUBMODULE()
321 C() { print_created(this); } in TEST_SUBMODULE()
[all …]
Dtest_copy_move.cpp40 MoveOnlyInt(int v) : value{std::move(v)} { print_created(this, value); } in MoveOnlyInt()
52 MoveOrCopyInt(int v) : value{std::move(v)} { print_created(this, value); } in MoveOrCopyInt()
64 CopyOnlyInt(int v) : value{std::move(v)} { print_created(this, value); } in CopyOnlyInt()
Dtest_virtual_functions.cpp18 ExampleVirt(int state) : state(state) { print_created(this, state); } in ExampleVirt()
102 NonCopyable(int a, int b) : value{new int(a*b)} { print_created(this, a, b); } in NonCopyable()
121 Movable(int a, int b) : value{a+b} { print_created(this, a, b); } in Movable()
Dtest_modules.cpp23 A(int v) : v(v) { print_created(this, v); } in TEST_SUBMODULE()
Dobject.h71 print_created(this, "from pointer", m_ptr); track_created((ref_tag*) this, "from pointer"); in ref()
Dtest_sequences_and_iterators.cpp100 print_created(this, "of size", m_size); in TEST_SUBMODULE()
105 print_created(this, "of size", m_size, "from std::vector"); in TEST_SUBMODULE()
Dtest_buffers.cpp19 print_created(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); in TEST_SUBMODULE()
Dconstructor_stats.h264 template <class T, typename... Values> void print_created(T *inst, Values &&...values) { in print_created() function
Dtest_operator_overloading.cpp17 Vector2(float x, float y) : x(x), y(y) { print_created(this, toString()); } in Vector2()
Dtest_stl.cpp296 Placeholder() { print_created(this); } in TEST_SUBMODULE()
Dtest_eigen.cpp176 ReturnTester() { print_created(this); } in TEST_SUBMODULE()
Dtest_methods_and_attributes.cpp22 ExampleMandA(int value) : value(value) { print_created(this, value); } in ExampleMandA()
Dtest_class.cpp43 print_created(ptr, "via new_instance"); in TEST_SUBMODULE()