Home
last modified time | relevance | path

Searched defs:ExampleMandA (Results 1 – 1 of 1) sorted by relevance

/external/python/pybind11/tests/
Dtest_methods_and_attributes.cpp19 class ExampleMandA { class
21 ExampleMandA() { print_default_created(this); } in ExampleMandA() function in ExampleMandA
22 ExampleMandA(int value) : value(value) { print_created(this, value); } in ExampleMandA() function in ExampleMandA
23 ExampleMandA(const ExampleMandA &e) : value(e.value) { print_copy_created(this); } in ExampleMandA() function in ExampleMandA
24 ExampleMandA(std::string&&) {} in ExampleMandA() function in ExampleMandA
25 ExampleMandA(ExampleMandA &&e) : value(e.value) { print_move_created(this); } in ExampleMandA() function in ExampleMandA