Searched refs:get_noncopyable (Results 1 - 2 of 2) sorted by relevance
/gem5/ext/pybind11/tests/ |
H A D | test_virtual_functions.cpp | 133 virtual NonCopyable get_noncopyable(int a, int b) { return NonCopyable(a, b); } function in class:NCVirt 136 std::string print_nc(int a, int b) { return get_noncopyable(a, b).get_value(); } 141 NonCopyable get_noncopyable(int a, int b) override { 142 PYBIND11_OVERLOAD(NonCopyable, NCVirt, get_noncopyable, a, b); 207 .def("get_noncopyable", &NCVirt::get_noncopyable)
|
H A D | test_virtual_functions.py | 166 def get_noncopyable(self, a, b): member in class:test_move_support.NCVirtExt 177 def get_noncopyable(self, a, b): member in class:test_move_support.NCVirtExt2
|
Completed in 7 milliseconds