Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for containsEntryImpl (0.06 sec)

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

        public <T extends @Nullable Object> T[] toArray(T[] array) {
          return standardToArray(array);
        }
    
        @Override
        public boolean contains(@Nullable Object o) {
          return Maps.containsEntryImpl(delegate(), o);
        }
    
        @Override
        public boolean containsAll(Collection<?> c) {
          return standardContainsAll(c);
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 15:50:50 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Synchronized.java

            return ObjectArrays.toArrayImpl(delegate(), array);
          }
        }
    
        @Override
        public boolean contains(@Nullable Object o) {
          synchronized (mutex) {
            return Maps.containsEntryImpl(delegate(), o);
          }
        }
    
        @Override
        public boolean containsAll(Collection<?> c) {
          synchronized (mutex) {
            return Collections2.containsAllImpl(delegate(), c);
          }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Aug 08 15:11:10 UTC 2025
    - 53K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Synchronized.java

            return ObjectArrays.toArrayImpl(delegate(), array);
          }
        }
    
        @Override
        public boolean contains(@Nullable Object o) {
          synchronized (mutex) {
            return Maps.containsEntryImpl(delegate(), o);
          }
        }
    
        @Override
        public boolean containsAll(Collection<?> c) {
          synchronized (mutex) {
            return Collections2.containsAllImpl(delegate(), c);
          }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Aug 08 15:11:10 UTC 2025
    - 56.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

       * @param o the object that might be contained in {@code c}
       * @return {@code true} if {@code c} contains {@code o}
       */
      static <K extends @Nullable Object, V extends @Nullable Object> boolean containsEntryImpl(
          Collection<Entry<K, V>> c, @Nullable Object o) {
        if (!(o instanceof Entry)) {
          return false;
        }
        return c.contains(unmodifiableEntry((Entry<?, ?>) o));
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 163.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

       * @param o the object that might be contained in {@code c}
       * @return {@code true} if {@code c} contains {@code o}
       */
      static <K extends @Nullable Object, V extends @Nullable Object> boolean containsEntryImpl(
          Collection<Entry<K, V>> c, @Nullable Object o) {
        if (!(o instanceof Entry)) {
          return false;
        }
        return c.contains(unmodifiableEntry((Entry<?, ?>) o));
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 17:50:58 UTC 2025
    - 157.6K bytes
    - Viewed (0)
Back to top