Searched refs:run_bool (Results 1 – 2 of 2) sorted by relevance
29 virtual bool run_bool() = 0;58 bool run_bool() override { in run_bool() function in PyExampleVirt62 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()
20 def run_bool(self): member in test_override.ExtendedExampleVirt