Home
last modified time | relevance | path

Searched refs:const_it (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dmap_test.cc158 Map<int32, int32>::const_iterator const_it = const_map_.find(key); in ExpectElement() local
161 EXPECT_EQ(key, (*const_it).first); in ExpectElement()
162 EXPECT_EQ(value, (*const_it).second); in ExpectElement()
163 EXPECT_EQ(key, const_it->first); in ExpectElement()
164 EXPECT_EQ(value, const_it->second); in ExpectElement()
167 Map<int32, int32>::const_iterator const_it_copy = const_it; in ExpectElement()