Home
last modified time | relevance | path

Searched refs: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() 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
654 size_t ConstructorTracker::copy_constructor_called = 0;
655 size_t ConstructorTracker::move_constructor_called = 0;
656 size_t ConstructorTracker::copy_assignment_called = 0;
[all …]
Dresult_test.cpp195 struct ConstructorTracker { struct
203 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() function
207 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() function
211 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() function
215 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =() argument
220 ConstructorTracker& operator=(ConstructorTracker&& ct) noexcept { in operator =() argument
229 size_t ConstructorTracker::constructor_called = 0;
230 size_t ConstructorTracker::copy_constructor_called = 0;
231 size_t ConstructorTracker::move_constructor_called = 0;
232 size_t ConstructorTracker::copy_assignment_called = 0;
[all …]