Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for checkValid (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java

          throw new NullPointerException();
        }
        for (K k : keySet()) {
          checkValid(k);
        }
      }
    
      @Override
      public @Nullable Entry<K, V> ceilingEntry(K key) {
        return delegate.ceilingEntry(checkValid(key));
      }
    
      @Override
      public @Nullable K ceilingKey(K key) {
        return delegate.ceilingKey(checkValid(key));
      }
    
      @Override
      public void clear() {
        delegate.clear();
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Feb 13 17:34:21 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

        this.delegate = delegate;
        for (E e : this) {
          checkValid(e);
        }
      }
    
      @Override
      public boolean add(E element) {
        return delegate.add(checkValid(element));
      }
    
      @Override
      public boolean addAll(Collection<? extends E> collection) {
        for (E e : collection) {
          checkValid(e);
        }
        return delegate.addAll(collection);
      }
    
      @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Feb 13 17:34:21 GMT 2025
    - 5.8K bytes
    - Click Count (0)
Back to Top