Lines Matching full:begin
23 EXPECT_TRUE(Set.begin() == Set.end());
35 EXPECT_TRUE(CSet.begin() == CSet.end());
48 EXPECT_TRUE(IP.first == Set.begin());
51 EXPECT_FALSE(Set.begin() == Set.end());
52 EXPECT_TRUE(Set.begin() + 1 == Set.end());
64 EXPECT_TRUE(IP.first == Set.begin());
69 EXPECT_EQ(5u, *Set.begin());
73 EXPECT_TRUE(I == Set.begin());
92 USet::const_iterator I = Set.begin();
108 EXPECT_TRUE(IP.first == Set.begin() + 1);
120 EXPECT_TRUE(Set.find(5) == Set.begin());
138 I = Set.erase(Set.begin() + 1);
139 EXPECT_TRUE(I == Set.begin() + 1);
174 ASSERT_TRUE(I == Set.begin());
179 I = Set.erase(Set.begin());
180 ASSERT_TRUE(I == Set.begin());