Searched refs:const_it (Results 1 – 1 of 1) sorted by relevance
160 Map<int32, int32>::const_iterator const_it = const_map_.find(key); in ExpectElement() local163 EXPECT_EQ(key, (*const_it).first); in ExpectElement()164 EXPECT_EQ(value, (*const_it).second); in ExpectElement()165 EXPECT_EQ(key, const_it->first); in ExpectElement()166 EXPECT_EQ(value, const_it->second); in ExpectElement()169 Map<int32, int32>::const_iterator const_it_copy = const_it; in ExpectElement()