Lines Matching refs:MoveOnlyInt
168 flat_tree<MoveOnlyInt, identity, std::less<>, std::vector<MoveOnlyInt>>;
337 EXPECT_EQ(1U, moved.count(MoveOnlyInt(1))); in TEST()
338 EXPECT_EQ(1U, moved.count(MoveOnlyInt(2))); in TEST()
339 EXPECT_EQ(1U, moved.count(MoveOnlyInt(3))); in TEST()
340 EXPECT_EQ(1U, moved.count(MoveOnlyInt(4))); in TEST()
381 using Pair = std::pair<int, MoveOnlyInt>; in TEST()
387 storage.push_back(Pair(2, MoveOnlyInt(0))); in TEST()
388 storage.push_back(Pair(1, MoveOnlyInt(0))); in TEST()
389 storage.push_back(Pair(2, MoveOnlyInt(1))); in TEST()
467 using Pair = std::pair<int, MoveOnlyInt>; in TEST()
470 storage.push_back(Pair(1, MoveOnlyInt(0))); in TEST()
471 storage.push_back(Pair(2, MoveOnlyInt(0))); in TEST()
534 EXPECT_EQ(1U, moved.count(MoveOnlyInt(1))); in TEST()
535 EXPECT_EQ(1U, moved.count(MoveOnlyInt(2))); in TEST()
536 EXPECT_EQ(1U, moved.count(MoveOnlyInt(3))); in TEST()
537 EXPECT_EQ(1U, moved.count(MoveOnlyInt(4))); in TEST()
718 std::pair<MoveOnlyTree::iterator, bool> result = cont.insert(MoveOnlyInt(2)); in TEST()
724 result = cont.insert(MoveOnlyInt(1)); in TEST()
730 result = cont.insert(MoveOnlyInt(3)); in TEST()
736 result = cont.insert(MoveOnlyInt(3)); in TEST()
774 auto result = cont.insert(cont.cend(), MoveOnlyInt(2)); in TEST()
779 result = cont.insert(cont.cend(), MoveOnlyInt(1)); in TEST()
784 result = cont.insert(cont.cend(), MoveOnlyInt(3)); in TEST()
789 result = cont.insert(cont.cend(), MoveOnlyInt(3)); in TEST()