Home | History | Annotate | Download | only in protobuf

Lines Matching defs:entrySet

64  * object returned by {@link #entrySet()} adheres to the same contract but is
144 // The EntrySet is a stateless view of the Map. It's initialized the first
146 private volatile EntrySet lazyEntrySet;
197 overflowEntries.entrySet();
302 getOverflowEntriesMutable().entrySet().iterator();
352 public Set<Map.Entry<K, V>> entrySet() {
354 lazyEntrySet = new EntrySet();
470 private class EntrySet extends AbstractSet<Map.Entry<K, V>> {
578 lazyOverflowIterator = overflowEntries.entrySet().iterator();
640 return entrySet().equals(other.entrySet());