Searched defs:ConstructorTracker (Results 1 – 9 of 9) sorted by relevance
646 struct ConstructorTracker { struct655 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() argument658 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() function662 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() argument666 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =() argument671 ConstructorTracker& operator=(ConstructorTracker&& ct) noexcept { in operator =() argument686 size_t ConstructorTracker::constructor_called = 0; argument
523 struct ConstructorTracker { struct524 static size_t constructor_called;525 static size_t copy_constructor_called;526 static size_t move_constructor_called;527 static size_t copy_assignment_called;528 static size_t move_assignment_called;531 ConstructorTracker(T&& string) : string(string) { in ConstructorTracker() function535 ConstructorTracker(const ConstructorTracker& ct) { in ConstructorTracker() argument539 ConstructorTracker(ConstructorTracker&& ct) noexcept { in ConstructorTracker() argument543 ConstructorTracker& operator=(const ConstructorTracker& ct) { in operator =()[all …]
120 explicit ConstructorTracker(int count) : countdown_(count) { in ConstructorTracker() function