Home | History | Annotate | Download | only in util

Lines Matching defs:entrySet

505         for (Entry<? extends K, ? extends V> e : m.entrySet())
627 * <tt>this.entrySet().equals(m.entrySet())</tt>.
656 return entrySet().equals(m.entrySet());
665 * <tt>entrySet()</tt> view. This ensures that <tt>m1.equals(m2)</tt>
672 * <tt>entrySet</tt> method, it is possible that the contractual
704 m.entrySet = null;
925 private transient Set<Map.Entry<K,V>> entrySet;
1176 public Set<Map.Entry<K,V>> entrySet() {
1177 Set<Map.Entry<K,V>> es = entrySet;
1181 return entrySet = new EntrySet();
1184 private class EntrySet extends AbstractSet<Map.Entry<K,V>> {