Searched refs:MoveCounter (Results 1 – 1 of 1) sorted by relevance
221 class MoveCounter { class223 MoveCounter(int* move_constructs, int* move_assigns) in MoveCounter() function in base::__anon87abc92c0111::MoveCounter225 MoveCounter(MoveCounter&& other) : counter_(std::move(other.counter_)) {} in MoveCounter() function in base::__anon87abc92c0111::MoveCounter226 MoveCounter& operator=(MoveCounter&& other) { in operator =()231 explicit MoveCounter(DerivedCopyMoveCounter&& other) in MoveCounter() function in base::__anon87abc92c0111::MoveCounter1140 Bind(&VoidPolymorphic<const MoveCounter&>::Run, in TEST_F()1141 MoveCounter(&move_constructs, &move_assigns)); in TEST_F()1150 Bind(&VoidPolymorphic<MoveCounter>::Run) in TEST_F()1151 .Run(MoveCounter(&move_constructs, &move_assigns)); in TEST_F()1157 Bind(&VoidPolymorphic<MoveCounter>::Run) in TEST_F()[all …]