Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DFunctionExtrasTest.cpp183 struct MoveCounter { in TEST() struct
184 int &MoveCount; in TEST()
186 MoveCounter(int &MoveCount) : MoveCount(MoveCount) {} in TEST() function
187 MoveCounter(MoveCounter &&Arg) : MoveCount(Arg.MoveCount) { ++MoveCount; } in TEST() argument
190 unique_function<void(MoveCounter)> ByValF = [](MoveCounter) {}; in TEST() argument
203 unique_function<void(MoveCounter &&)> ByRefF = [](MoveCounter &&) {}; in TEST() argument
/external/libchrome/base/
Dbind_unittest.cc219 class MoveCounter { class
221 MoveCounter(int* move_constructs, int* move_assigns) in MoveCounter() function in base::__anon398078b80111::MoveCounter
223 MoveCounter(MoveCounter&& other) : counter_(std::move(other.counter_)) {} in MoveCounter() function in base::__anon398078b80111::MoveCounter
229 explicit MoveCounter(DerivedCopyMoveCounter&& other) in MoveCounter() function in base::__anon398078b80111::MoveCounter