Home | History | Annotate | Download | only in ADT

Lines Matching defs:it

129   // two-phase name lookup, it also doesn't require the typename. Deal with
154 typename TypeParam::iterator it = this->Map.begin();
155 EXPECT_EQ(this->getKey(), it->first);
156 EXPECT_EQ(this->getValue(), it->second);
157 ++it;
158 EXPECT_TRUE(it == this->Map.end());
305 for (typename TypeParam::iterator it = this->Map.begin();
306 it != this->Map.end(); ++it)
307 visited[visitedIndex[it->first]] = true;
317 typename TypeParam::iterator it = this->Map.begin();
318 typename TypeParam::const_iterator cit(it);
319 EXPECT_TRUE(it == cit);