Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_virtual_functions.cpp135 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()
Dtest_virtual_functions.py194 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