Home | History | Annotate | Download | only in ADT

Lines Matching defs:Move

345   static int Move;
354 CountCopyAndMove(CountCopyAndMove &&) { Move++; }
356 Move++;
361 int CountCopyAndMove::Move = 0;
378 CountCopyAndMove::Move = 0;
385 // Check that move was called the expected number of times
386 EXPECT_EQ(ExpectedMaxInitialEntries, CountCopyAndMove::Move);
397 // Check that move was called the expected number of times
398 // This relies on move-construction elision, and cannot be reliably tested.
399 // EXPECT_EQ(ExpectedMaxInitialEntries + 2, CountCopyAndMove::Move);
416 CountCopyAndMove::Move = 0;
423 // Check that move was called the expected number of times
424 EXPECT_EQ(Size, CountCopyAndMove::Move);
438 CountCopyAndMove::Move = 0;
441 // Check that no move occured
442 EXPECT_EQ(0, CountCopyAndMove::Move);
460 CountCopyAndMove::Move = 0;
467 // Check that move was called the expected number of times
468 EXPECT_EQ(Size, CountCopyAndMove::Move);