Home
last modified time | relevance | path

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

/system/libbase/
Dexpected_test.cpp613 struct ConstructorTracker { struct
622 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument
625 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() function
629 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() argument
633 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =() argument
638 ConstructorTracker& operator=(ConstructorTracker&& ct) noexcept { in operator =() argument
653 size_t ConstructorTracker::constructor_called = 0; argument
Dresult_test.cpp503 struct ConstructorTracker { struct
504 static size_t constructor_called;
505 static size_t copy_constructor_called;
506 static size_t move_constructor_called;
507 static size_t copy_assignment_called;
508 static size_t move_assignment_called;
511 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument
515 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() function
519 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() function
523 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =()
[all …]