Searched refs:get_noncopyable (Results 1 – 2 of 2) sorted by relevance
/external/python/pybind11/tests/ |
D | test_virtual_functions.cpp | 135 virtual NonCopyable get_noncopyable(int a, int b) { return NonCopyable(a, b); } in get_noncopyable() function in NCVirt 138 std::string print_nc(int a, int b) { return get_noncopyable(a, b).get_value(); } in print_nc() 143 NonCopyable get_noncopyable(int a, int b) override { in get_noncopyable() function in NCVirtTrampoline 144 PYBIND11_OVERRIDE(NonCopyable, NCVirt, get_noncopyable, a, b); in get_noncopyable() 211 .def("get_noncopyable", &NCVirt::get_noncopyable) in TEST_SUBMODULE()
|
D | test_virtual_functions.py | 194 def get_noncopyable(self, a, b): member in test_move_support.NCVirtExt 205 def get_noncopyable(self, a, b): member in test_move_support.NCVirtExt2
|