Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_virtual_functions.cpp136 virtual Movable get_movable(int a, int b) = 0;
139 std::string print_movable(int a, int b) { return get_movable(a, b).get_value(); } in print_movable()
147 Movable get_movable(int a, int b) override { in get_movable() function in NCVirtTrampoline
148 PYBIND11_OVERRIDE_PURE(Movable, NCVirt, get_movable, a, b); in get_movable()
212 .def("get_movable", &NCVirt::get_movable) in TEST_SUBMODULE()
Dtest_virtual_functions.py199 def get_movable(self, a, b): member in test_move_support.NCVirtExt
210 def get_movable(self, a, b): member in test_move_support.NCVirtExt2