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

/gem5/ext/pybind11/tests/
H A Dtest_virtual_functions.cpp328 class A_Repeat { class
342 virtual ~A_Repeat() = default;
344 class B_Repeat : public A_Repeat {
374 class PyA_Repeat : public A_Repeat {
376 using A_Repeat::A_Repeat;
377 int unlucky_number() override { PYBIND11_OVERLOAD_PURE(int, A_Repeat, unlucky_number, ); }
378 std::string say_something(unsigned times) override { PYBIND11_OVERLOAD(std::string, A_Repeat, say_something, times); }
447 py::class_<A_Repeat, PyA_Repeat>(m, "A_Repeat")
[all...]
H A Dtest_virtual_functions.py246 class AR(m.A_Repeat):

Completed in 7 milliseconds