Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_virtual_functions.cpp29 virtual bool run_bool() = 0;
58 bool run_bool() override { in run_bool() function in PyExampleVirt
62 run_bool, /* Name of function */ in run_bool()
198 .def("run_bool", &ExampleVirt::run_bool) in TEST_SUBMODULE()
218 m.def("runExampleVirtBool", [](ExampleVirt* ex) { return ex->run_bool(); }); in TEST_SUBMODULE()
Dtest_virtual_functions.py20 def run_bool(self): member in test_override.ExtendedExampleVirt