Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 266 for CheckForNull (0.16 sec)

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

      }
    
      private boolean containsMapping(
          @CheckForNull Object rowKey, @CheckForNull Object columnKey, @CheckForNull Object value) {
        return value != null && value.equals(get(rowKey, columnKey));
      }
    
      /** Remove a row key / column key / value mapping, if present. */
      private boolean removeMapping(
          @CheckForNull Object rowKey, @CheckForNull Object columnKey, @CheckForNull Object value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        @ParametricNullness final K key;
        Collection<V> delegate;
        @CheckForNull final WrappedCollection ancestor;
        @CheckForNull final Collection<V> ancestorDelegate;
    
        WrappedCollection(
            @ParametricNullness K key,
            Collection<V> delegate,
            @CheckForNull WrappedCollection ancestor) {
          this.key = key;
          this.delegate = delegate;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/StandardTable.java

      }
    
      private boolean containsMapping(
          @CheckForNull Object rowKey, @CheckForNull Object columnKey, @CheckForNull Object value) {
        return value != null && value.equals(get(rowKey, columnKey));
      }
    
      /** Remove a row key / column key / value mapping, if present. */
      private boolean removeMapping(
          @CheckForNull Object rowKey, @CheckForNull Object columnKey, @CheckForNull Object value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/DirectedGraphConnections.java

       * not have been inserted consecutively.
       */
      @CheckForNull private final List<NodeConnection<N>> orderedNodeConnections;
    
      private int predecessorCount;
      private int successorCount;
    
      private DirectedGraphConnections(
          Map<N, Object> adjacentNodeValues,
          @CheckForNull List<NodeConnection<N>> orderedNodeConnections,
          int predecessorCount,
          int successorCount) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

      @VisibleForTesting @CheckForNull Integer initialCapacity;
      @VisibleForTesting @CheckForNull Long maximumSize;
      @VisibleForTesting @CheckForNull Long maximumWeight;
      @VisibleForTesting @CheckForNull Integer concurrencyLevel;
      @VisibleForTesting @CheckForNull Strength keyStrength;
      @VisibleForTesting @CheckForNull Strength valueStrength;
      @VisibleForTesting @CheckForNull Boolean recordStats;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilderSpec.java

      @VisibleForTesting @CheckForNull Integer initialCapacity;
      @VisibleForTesting @CheckForNull Long maximumSize;
      @VisibleForTesting @CheckForNull Long maximumWeight;
      @VisibleForTesting @CheckForNull Integer concurrencyLevel;
      @VisibleForTesting @CheckForNull Strength keyStrength;
      @VisibleForTesting @CheckForNull Strength valueStrength;
      @VisibleForTesting @CheckForNull Boolean recordStats;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/AbstractBiMap.java

        this.inverse = inverse;
      }
    
      // Query Operations (optimizations)
    
      @Override
      public boolean containsValue(@CheckForNull Object value) {
        return inverse.containsKey(value);
      }
    
      // Modification Operations
    
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      public V put(@ParametricNullness K key, @ParametricNullness V value) {
        return putInBothMaps(key, value, false);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * lowerEntry} to forward to this implementation.
       */
      @CheckForNull
      protected Entry<K, V> standardLowerEntry(@ParametricNullness K key) {
        return headMap(key, false).lastEntry();
      }
    
      @Override
      @CheckForNull
      public K lowerKey(@ParametricNullness K key) {
        return delegate().lowerKey(key);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * lowerEntry} to forward to this implementation.
       */
      @CheckForNull
      protected Entry<K, V> standardLowerEntry(@ParametricNullness K key) {
        return headMap(key, false).lastEntry();
      }
    
      @Override
      @CheckForNull
      public K lowerKey(@ParametricNullness K key) {
        return delegate().lowerKey(key);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/CollectSpliterators.java

          OutSpliteratorT newFlatMapSpliterator(
              @CheckForNull OutSpliteratorT prefix,
              Spliterator<InElementT> fromSplit,
              Function<? super InElementT, @Nullable OutSpliteratorT> function,
              int splitCharacteristics,
              long estSplitSize);
        }
    
        @Weak @CheckForNull OutSpliteratorT prefix;
        final Spliterator<InElementT> from;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top