Lines Matching refs:collection

274    * when accessing any of its collection views: <pre>   {@code
626 * keyFunction} on each value in the input collection to that value
628 * key for more than one value in the input collection
663 * keyFunction} on each value in the input collection to that value
665 * key for more than one value in the input collection
769 Collection<? extends Entry<K, V>> collection) {
781 @Override public boolean removeAll(Collection<?> collection) {
785 @Override public boolean retainAll(Collection<?> collection) {
820 * attempts to modify the returned map, whether direct or via its collection
1624 @Override public boolean removeAll(Collection<?> collection) {
1625 checkNotNull(collection);
1630 if (collection.contains(entry.getValue()) && predicate.apply(entry)) {
1638 @Override public boolean retainAll(Collection<?> collection) {
1639 checkNotNull(collection);
1644 if (!collection.contains(entry.getValue())
1853 @Override public boolean removeAll(Collection<?> collection) {
1854 checkNotNull(collection); // for GWT
1856 for (Object obj : collection) {
1862 @Override public boolean retainAll(Collection<?> collection) {
1863 checkNotNull(collection); // for GWT
1868 if (!collection.contains(entry.getKey()) && predicate.apply(entry)) {
1891 * isEmpty()} methods of its key set and value collection to this
1986 * <p>Note that {@code c} is the backing (delegate) collection, rather than
1987 * the forwarding collection.
1989 * @param c the delegate (unwrapped) collection of map entries
2006 * <p>Note that {@code c} is backing (delegate) collection, rather than the
2007 * forwarding collection.
2009 * @param c the delegate (unwrapped) collection of map entries