Searched defs:PyTF6 (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/tests/
H A Dtest_factory_constructors.cpp81 class PyTF6 : public TestFactory6 { class in inherits:TestFactory6
85 PyTF6(TestFactory6 &&base) : TestFactory6(std::move(base)) { alias = true; print_created(this, "move", value); } function in class:PyTF6
86 PyTF6(int i) : TestFactory6(i) { alias = true; print_created(this, i); } function in class:PyTF6
87 PyTF6(PyTF6 &&f) : TestFactory6(std::move(f)) { print_move_created(this); } function in class:PyTF6
88 PyTF6(const PyTF6 &f) : TestFactory6(f) { print_copy_created(this); } function in class:PyTF6
89 PyTF6(std::string s) : TestFactory6((int) s.size()) { alias = true; print_created(this, s); } function in class:PyTF6
[all...]

Completed in 6 milliseconds