Lines Matching defs:it
47 static K Key(Iterator it) { return it->first; }
48 static PersistentContainerValue Value(Iterator it) { return it->second; }
60 Iterator it = impl->find(key);
61 if (it == impl->end()) return kPersistentContainerNotFound;
62 return it->second;
65 Iterator it = impl->find(key);
66 if (it == impl->end()) return kPersistentContainerNotFound;
67 PersistentContainerValue value = it->second;
68 impl->erase(it);
152 * Get value stored in map and set it in returnValue.
188 * Return value for key and remove it from the map.
199 typedef typename Traits::Iterator It;
205 for (It i = Traits::Begin(&impl); i != Traits::End(&impl); ++i) {