Searched refs:const_it (Results 1 – 1 of 1) sorted by relevance
157 Map<int32, int32>::const_iterator const_it = const_map_.find(key); in ExpectElement() local160 EXPECT_EQ(key, (*const_it).first); in ExpectElement()161 EXPECT_EQ(value, (*const_it).second); in ExpectElement()162 EXPECT_EQ(key, const_it->first); in ExpectElement()163 EXPECT_EQ(value, const_it->second); in ExpectElement()166 Map<int32, int32>::const_iterator const_it_copy = const_it; in ExpectElement()