Home
last modified time | relevance | path

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

/aosp12/system/libbase/
H A Dresult_test.cpp195 struct ConstructorTracker { struct
196 static size_t constructor_called;
197 static size_t copy_constructor_called;
198 static size_t move_constructor_called;
199 static size_t copy_assignment_called;
200 static size_t move_assignment_called;
203 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument
207 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() function
211 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() function
215 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =()
[all …]
H A Dexpected_test.cpp613 struct ConstructorTracker { struct
622 ConstructorTracker(T&& string) : string(string) { argument
625 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() argument
629 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() function
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