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

/gem5/ext/pybind11/tests/
H A Dtest_virtual_functions.cpp29 virtual bool run_bool() = 0;
58 bool run_bool() override {
62 run_bool, /* Name of function */
194 .def("run_bool", &ExampleVirt::run_bool)
214 m.def("runExampleVirtBool", [](ExampleVirt* ex) { return ex->run_bool(); });
H A Dtest_virtual_functions.py17 def run_bool(self): member in class:test_override.ExtendedExampleVirt
18 print('ExtendedExampleVirt::run_bool()')
54 assert capture == "ExtendedExampleVirt::run_bool()"

Completed in 7 milliseconds