Home
last modified time | relevance | path

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

/third_party/boost/boost/gil/concepts/
Dpixel_iterator.hpp185 const_t const_it(it); in constraints() local
186 ignore_unused_variable_warning(const_it); in constraints()
/third_party/protobuf/src/google/protobuf/
Dmap_test.cc164 Map<int32, int32>::const_iterator const_it = const_map_.find(key); in ExpectElement() local
167 EXPECT_EQ(key, (*const_it).first); in ExpectElement()
168 EXPECT_EQ(value, (*const_it).second); in ExpectElement()
169 EXPECT_EQ(key, const_it->first); in ExpectElement()
170 EXPECT_EQ(value, const_it->second); in ExpectElement()
173 Map<int32, int32>::const_iterator const_it_copy = const_it; in ExpectElement()