Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_factory_constructors.cpp137 static TestFactory3 *construct3() { return new TestFactory3(); } in construct3() function in TestFactoryHelper
139 …static std::shared_ptr<TestFactory3> construct3(int a) { return std::shared_ptr<TestFactory3>(new … in construct3() function in TestFactoryHelper
188 .def(py::init([](pointer_tag, int v) { return TestFactoryHelper::construct3(v); })) in TEST_SUBMODULE()
189 .def(py::init([](shared_ptr_tag) { return TestFactoryHelper::construct3(); })); in TEST_SUBMODULE()