Home
last modified time | relevance | path

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

/external/python/pybind11/tests/
Dtest_methods_and_attributes.cpp158 class DestructionTester { class
160 DestructionTester() { print_default_created(this); } in DestructionTester() function in DestructionTester
162 DestructionTester(const DestructionTester &) { print_copy_created(this); } in DestructionTester() argument
163 DestructionTester(DestructionTester &&) { print_move_created(this); } in DestructionTester() function in DestructionTester
164 …DestructionTester &operator=(const DestructionTester &) { print_copy_assigned(this); return *this;… in operator =()
165 DestructionTester &operator=(DestructionTester &&) { print_move_assigned(this); return *this; } in operator =() argument