Home | History | Annotate | Download | only in ADT

Lines Matching refs:rit

284   typename TypeParam::reverse_iterator rit = this->theVector.rbegin();
285 EXPECT_TRUE(*rit == this->theVector[1]);
286 EXPECT_EQ(2, rit->getValue());
287 ++rit;
288 EXPECT_TRUE(*rit == this->theVector[0]);
289 EXPECT_EQ(1, rit->getValue());
290 ++rit;
291 EXPECT_TRUE(rit == this->theVector.rend());
292 --rit;
293 EXPECT_TRUE(*rit == this->theVector[0]);
294 EXPECT_EQ(1, rit->getValue());
295 --rit;
296 EXPECT_TRUE(*rit == this->theVector[1]);
297 EXPECT_EQ(2, rit->getValue());