Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for removeValuesForKey (0.62 seconds)

  1. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new NavigableKeySet(sortedMap().tailMap(fromElement, inclusive));
        }
      }
    
      /** Removes all values for the provided key. */
      private void removeValuesForKey(@Nullable Object key) {
        Collection<V> collection = Maps.safeRemove(map, key);
    
        if (collection != null) {
          int count = collection.size();
          collection.clear();
          totalSize -= count;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 48.4K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new NavigableKeySet(sortedMap().tailMap(fromElement, inclusive));
        }
      }
    
      /** Removes all values for the provided key. */
      private void removeValuesForKey(@Nullable Object key) {
        Collection<V> collection = Maps.safeRemove(map, key);
    
        if (collection != null) {
          int count = collection.size();
          collection.clear();
          totalSize -= count;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Aug 12 15:51:57 GMT 2025
    - 46.9K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/Multimaps.java

          return multimap.keySet().size();
        }
    
        @Override
        protected Set<Entry<K, Collection<V>>> createEntrySet() {
          return new EntrySet();
        }
    
        void removeValuesForKey(@Nullable Object key) {
          multimap.keySet().remove(key);
        }
    
        @WeakOuter
        final class EntrySet extends Maps.EntrySet<K, Collection<V>> {
          @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 86K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/Multimaps.java

          return multimap.keySet().size();
        }
    
        @Override
        protected Set<Entry<K, Collection<V>>> createEntrySet() {
          return new EntrySet();
        }
    
        void removeValuesForKey(@Nullable Object key) {
          multimap.keySet().remove(key);
        }
    
        @WeakOuter
        final class EntrySet extends Maps.EntrySet<K, Collection<V>> {
          @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 86.3K bytes
    - Click Count (0)
Back to Top