Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for valuePredicateOnEntries (0.95 sec)

  1. android/guava/src/com/google/common/collect/FilteredEntryMultimap.java

            @Override
            public boolean removeAll(Collection<?> c) {
              return removeEntriesIf(Maps.<Collection<V>>valuePredicateOnEntries(in(c)));
            }
    
            @Override
            public boolean retainAll(Collection<?> c) {
              return removeEntriesIf(Maps.<Collection<V>>valuePredicateOnEntries(not(in(c))));
            }
          }
          return new ValuesImpl();
        }
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/FilteredMultimapValues.java

        return Iterables.removeIf(
            multimap.unfiltered().entries(),
            and(multimap.entryPredicate(), valuePredicateOnEntries(in(c))));
      }
    
      @Override
      public boolean retainAll(Collection<?> c) {
        return Iterables.removeIf(
            multimap.unfiltered().entries(),
            and(multimap.entryPredicate(), valuePredicateOnEntries(not(in(c)))));
      }
    
      @Override
      public void clear() {
        multimap.clear();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/FilteredEntryMultimap.java

            @Override
            public boolean removeAll(Collection<?> c) {
              return removeEntriesIf(Maps.<Collection<V>>valuePredicateOnEntries(in(c)));
            }
    
            @Override
            public boolean retainAll(Collection<?> c) {
              return removeEntriesIf(Maps.<Collection<V>>valuePredicateOnEntries(not(in(c))));
            }
          }
          return new ValuesImpl();
        }
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/StandardTable.java

            return obj != null && removeFromColumnIf(Maps.<V>valuePredicateOnEntries(equalTo(obj)));
          }
    
          @Override
          public boolean removeAll(Collection<?> c) {
            return removeFromColumnIf(Maps.<V>valuePredicateOnEntries(in(c)));
          }
    
          @Override
          public boolean retainAll(Collection<?> c) {
            return removeFromColumnIf(Maps.<V>valuePredicateOnEntries(not(in(c))));
          }
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multimaps.java

      public static <K extends @Nullable Object, V extends @Nullable Object>
          Multimap<K, V> filterValues(Multimap<K, V> unfiltered, Predicate<? super V> valuePredicate) {
        return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
      }
    
      /**
       * Returns a multimap containing the mappings in {@code unfiltered} whose values satisfy a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Multimaps.java

      public static <K extends @Nullable Object, V extends @Nullable Object>
          Multimap<K, V> filterValues(Multimap<K, V> unfiltered, Predicate<? super V> valuePredicate) {
        return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
      }
    
      /**
       * Returns a multimap containing the mappings in {@code unfiltered} whose values satisfy a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
Back to top