Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for valuePredicateOnEntries (0.07 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. 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)
  3. 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)
Back to top