Home | History | Annotate | Download | only in collect

Lines Matching defs:Impl

211       return new Impl<K, V, E>(strategy, this);
536 static class Impl<K, V, E> extends AbstractMap<K, V>
595 Impl(Strategy<K, V, E> strategy, Builder builder) {
792 Strategy<K, V, E> s = Impl.this.strategy;
823 Strategy<K, V, E> s = Impl.this.strategy;
846 Strategy<K, V, E> s = Impl.this.strategy;
871 Strategy<K, V, E> s = Impl.this.strategy;
899 Strategy<K, V, E> s = Impl.this.strategy;
925 Strategy<K, V, E> s = Impl.this.strategy;
993 Strategy<K, V, E> s = Impl.this.strategy;
1043 Strategy<K, V, E> s = Impl.this.strategy;
1082 Strategy<K, V, E> s = Impl.this.strategy;
1126 Strategy<K, V, E> s = Impl.this.strategy;
1168 Strategy<K, V, E> s = Impl.this.strategy;
1663 Strategy<K, V, E> s = Impl.this.strategy;
1695 Strategy<K, V, E> s = Impl.this.strategy;
1724 Impl.this.remove(lastReturned.getKey());
1776 V oldValue = Impl.this.put(getKey(), value);
1797 return Impl.this.size();
1801 return Impl.this.isEmpty();
1805 return Impl.this.containsKey(o);
1809 return Impl.this.remove(o) != null;
1813 Impl.this.clear();
1824 return Impl.this.size();
1828 return Impl.this.isEmpty();
1832 return Impl.this.containsValue(o);
1836 Impl.this.clear();
1855 V v = Impl.this.get(key);
1866 return key != null && Impl.this.remove(key, e.getValue());
1870 return Impl.this.size();
1874 return Impl.this.isEmpty();
1878 Impl.this.clear();
1912 Field f = Impl.class.getDeclaredField(name);
1977 static class ComputingImpl<K, V, E> extends Impl<K, V, E> {