Searched refs:print_created (Results 1 – 14 of 14) sorted by relevance
/external/python/pybind11/tests/ |
D | test_factory_constructors.cpp | 21 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 …]
|
D | test_smart_ptr.cpp | 100 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 …]
|
D | test_copy_move.cpp | 40 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()
|
D | test_virtual_functions.cpp | 18 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()
|
D | test_modules.cpp | 23 A(int v) : v(v) { print_created(this, v); } in TEST_SUBMODULE()
|
D | object.h | 71 print_created(this, "from pointer", m_ptr); track_created((ref_tag*) this, "from pointer"); in ref()
|
D | test_sequences_and_iterators.cpp | 100 print_created(this, "of size", m_size); in TEST_SUBMODULE() 105 print_created(this, "of size", m_size, "from std::vector"); in TEST_SUBMODULE()
|
D | test_buffers.cpp | 19 print_created(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); in TEST_SUBMODULE()
|
D | constructor_stats.h | 264 template <class T, typename... Values> void print_created(T *inst, Values &&...values) { in print_created() function
|
D | test_operator_overloading.cpp | 17 Vector2(float x, float y) : x(x), y(y) { print_created(this, toString()); } in Vector2()
|
D | test_stl.cpp | 296 Placeholder() { print_created(this); } in TEST_SUBMODULE()
|
D | test_eigen.cpp | 176 ReturnTester() { print_created(this); } in TEST_SUBMODULE()
|
D | test_methods_and_attributes.cpp | 22 ExampleMandA(int value) : value(value) { print_created(this, value); } in ExampleMandA()
|
D | test_class.cpp | 43 print_created(ptr, "via new_instance"); in TEST_SUBMODULE()
|