Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for standardRetainAll (0.31 sec)

  1. android/guava-tests/test/com/google/common/collect/ForwardingQueueTest.java

        @Override
        public boolean removeAll(Collection<?> collection) {
          return standardRemoveAll(collection);
        }
    
        @Override
        public boolean retainAll(Collection<?> collection) {
          return standardRetainAll(collection);
        }
    
        @Override
        public Object[] toArray() {
          return standardToArray();
        }
    
        @Override
        public <T> T[] toArray(T[] array) {
          return standardToArray(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ForwardingSortedSetTest.java

        @Override
        public boolean removeAll(Collection<?> collection) {
          return standardRemoveAll(collection);
        }
    
        @Override
        public boolean retainAll(Collection<?> collection) {
          return standardRetainAll(collection);
        }
    
        @Override
        public Object[] toArray() {
          return standardToArray();
        }
    
        @Override
        public <T> T[] toArray(T[] array) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java

        @Override
        public boolean removeAll(Collection<?> collection) {
          return standardRemoveAll(collection);
        }
    
        @Override
        public boolean retainAll(Collection<?> collection) {
          return standardRetainAll(collection);
        }
    
        @Override
        public int size() {
          return standardSize();
        }
    
        @Override
        public Object[] toArray() {
          return standardToArray();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractBiMap.java

        public boolean removeAll(Collection<?> keysToRemove) {
          return standardRemoveAll(keysToRemove);
        }
    
        @Override
        public boolean retainAll(Collection<?> keysToRetain) {
          return standardRetainAll(keysToRetain);
        }
    
        @Override
        public Iterator<K> iterator() {
          return Maps.keyIterator(entrySet().iterator());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java

        @Override
        public boolean removeAll(Collection<?> collection) {
          return standardRemoveAll(collection);
        }
    
        @Override
        public boolean retainAll(Collection<?> collection) {
          return standardRetainAll(collection);
        }
    
        @Override
        public Object[] toArray() {
          return standardToArray();
        }
    
        @Override
        public <T> T[] toArray(T[] array) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractBiMap.java

        public boolean removeAll(Collection<?> keysToRemove) {
          return standardRemoveAll(keysToRemove);
        }
    
        @Override
        public boolean retainAll(Collection<?> keysToRetain) {
          return standardRetainAll(keysToRetain);
        }
    
        @Override
        public Iterator<K> iterator() {
          return Maps.keyIterator(entrySet().iterator());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ForwardingMultiset.java

       * #elementSet}. If you override {@link #elementSet}, you may wish to override {@link #retainAll}
       * to forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardRetainAll(Collection<?> elementsToRetain) {
        return Multisets.retainAllImpl(this, elementsToRetain);
      }
    
      /**
       * A sensible definition of {@link #setCount(Object, int)} in terms of {@link #count(Object)},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ForwardingMultiset.java

       * #elementSet}. If you override {@link #elementSet}, you may wish to override {@link #retainAll}
       * to forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardRetainAll(Collection<?> elementsToRetain) {
        return Multisets.retainAllImpl(this, elementsToRetain);
      }
    
      /**
       * A sensible definition of {@link #setCount(Object, int)} in terms of {@link #count(Object)},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top