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.cpp20 TestFactory1(int v) : value(std::to_string(v)) { print_created(this, value); } in TestFactory1()
21 TestFactory1(std::string v) : value(std::move(v)) { print_created(this, value); } in TestFactory1()
34 TestFactory2(int v) : value(std::to_string(v)) { print_created(this, value); } in TestFactory2()
35 TestFactory2(std::string v) : value(std::move(v)) { print_created(this, value); } in TestFactory2()
47 TestFactory3(int v) : value(std::to_string(v)) { print_created(this, value); } in TestFactory3()
49 TestFactory3(std::string v) : value(std::move(v)) { print_created(this, value); } in TestFactory3()
59 TestFactory4(int v) : TestFactory3(v) { print_created(this, v); } in TestFactory4()
65 TestFactory5(int i) : TestFactory3(i) { print_created(this, i); } in TestFactory5()
74 TestFactory6(int i) : value{i} { print_created(this, i); } in TestFactory6()
85 …PyTF6(TestFactory6 &&base) : TestFactory6(std::move(base)) { alias = true; print_created(this, "mo… in PyTF6()
[all …]
Dtest_smart_ptr.cpp99 MyObject1(int value) : value(value) { print_created(this, toString()); } in TEST_SUBMODULE()
131 MyObject2(int value) : value(value) { print_created(this, toString()); } in TEST_SUBMODULE()
150 MyObject3(int value) : value(value) { print_created(this, toString()); } in TEST_SUBMODULE()
180 MyObject4(int value) : value{value} { print_created(this); } in TEST_SUBMODULE()
196 print_created(this); in TEST_SUBMODULE()
209 MyObject4b(int i) : MyObject4a(i) { print_created(this); } in TEST_SUBMODULE()
218 MyObject5(int value) : value{value} { print_created(this); } in TEST_SUBMODULE()
229 A() { print_created(this); } in TEST_SUBMODULE()
254 B() { print_created(this); } in TEST_SUBMODULE()
290 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.cpp22 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.cpp98 print_created(this, "of size", m_size); in TEST_SUBMODULE()
103 print_created(this, "of size", m_size, "from std::vector"); in TEST_SUBMODULE()
Dtest_buffers.cpp18 print_created(this, std::to_string(m_rows) + "x" + std::to_string(m_cols) + " matrix"); in TEST_SUBMODULE()
Dtest_operator_overloading.cpp17 Vector2(float x, float y) : x(x), y(y) { print_created(this, toString()); } in Vector2()
Dconstructor_stats.h264 template <class T, typename... Values> void print_created(T *inst, Values &&...values) { in print_created() function
Dtest_stl.cpp256 Placeholder() { print_created(this); } in TEST_SUBMODULE()
Dtest_class.cpp36 print_created(ptr, "via new_instance"); in TEST_SUBMODULE()
Dtest_eigen.cpp177 ReturnTester() { print_created(this); } in TEST_SUBMODULE()
Dtest_methods_and_attributes.cpp22 ExampleMandA(int value) : value(value) { print_created(this, value); } in ExampleMandA()