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() argument
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.cpp491 struct ConstructorTracker { struct
492 static size_t constructor_called;
493 static size_t copy_constructor_called;
494 static size_t move_constructor_called;
495 static size_t copy_assignment_called;
496 static size_t move_assignment_called;
499 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument
503 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() argument
507 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() function
511 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =()
[all …]