Home
last modified time | relevance | path

Searched refs:MoveCount (Results 1 – 1 of 1) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DFunctionExtrasTest.cpp184 int &MoveCount; in TEST() member
186 MoveCounter(int &MoveCount) : MoveCount(MoveCount) {} in TEST()
187 MoveCounter(MoveCounter &&Arg) : MoveCount(Arg.MoveCount) { ++MoveCount; } in TEST()
191 int MoveCount = 0; in TEST() local
192 ByValF(MoveCounter(MoveCount)); in TEST()
193 EXPECT_EQ(1, MoveCount); in TEST()
195 MoveCount = 0; in TEST()
197 MoveCounter Counter{MoveCount}; in TEST()
200 EXPECT_EQ(2, MoveCount); in TEST()
204 MoveCount = 0; in TEST()
[all …]