Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_virtual_functions.cpp340 class A_Repeat { class
354 A_Repeat() = default;
355 A_Repeat(const A_Repeat&) = delete;
356 virtual ~A_Repeat() = default;
358 class B_Repeat : public A_Repeat {
393 class PyA_Repeat : public A_Repeat {
395 using A_Repeat::A_Repeat;
396 int unlucky_number() override { PYBIND11_OVERRIDE_PURE(int, A_Repeat, unlucky_number, ); } in unlucky_number()
397 …std::string say_something(unsigned times) override { PYBIND11_OVERRIDE(std::string, A_Repeat, say_… in say_something()
466 py::class_<A_Repeat, PyA_Repeat>(m, "A_Repeat") in initialize_inherited_virtuals()
[all …]
Dtest_virtual_functions.py277 class AR(m.A_Repeat):