Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for createValues (0.1 seconds)

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

      @LazyInit private transient @Nullable Collection<V> values;
    
      @Override
      public Collection<V> values() {
        Collection<V> result = values;
        return (result == null) ? values = createValues() : result;
      }
    
      Collection<V> createValues() {
        return new Values();
      }
    
      Iterator<V> valuesIterator() {
        return new TransformedIterator<Cell<R, C, V>, V>(cellSet().iterator()) {
          @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  2. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableMap.java

      @Override
      public ImmutableCollection<V> values() {
        if (cachedValues != null) {
          return cachedValues;
        }
        return cachedValues = createValues();
      }
    
      // cached so that this.multimapView().inverse() only computes inverse once
      private transient @Nullable ImmutableSetMultimap<K, V> multimapView;
    
      public ImmutableSetMultimap<K, V> asMultimap() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 15:51:42 GMT 2026
    - 17.2K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/StandardTable.java

          }
    
          @Override
          public boolean retainAll(Collection<?> c) {
            return removeFromColumnIf(Maps.keyPredicateOnEntries(not(in(c))));
          }
        }
    
        @Override
        Collection<V> createValues() {
          return new Values();
        }
    
        @WeakOuter
        private final class Values extends Maps.Values<R, V> {
          Values() {
            super(Column.this);
          }
    
          @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/ImmutableMap.java

        return (result == null) ? values = createValues() : result;
      }
    
      /*
       * This could have a good default implementation of `return new ImmutableMapValues<K, V>(this)`,
       * but ProGuard can't figure out how to eliminate that default when RegularImmutableMap overrides
       * it.
       */
      abstract ImmutableCollection<V> createValues();
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 02 19:58:40 GMT 2026
    - 41.2K bytes
    - Click Count (0)
  5. guava/src/com/google/common/collect/ImmutableMap.java

        return (result == null) ? values = createValues() : result;
      }
    
      /*
       * This could have a good default implementation of `return new ImmutableMapValues<K, V>(this)`,
       * but ProGuard can't figure out how to eliminate that default when RegularImmutableMap overrides
       * it.
       */
      abstract ImmutableCollection<V> createValues();
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 44.7K bytes
    - Click Count (0)
  6. guava/src/com/google/common/collect/Tables.java

          return fromTable.rowKeySet();
        }
    
        @Override
        public Set<C> columnKeySet() {
          return fromTable.columnKeySet();
        }
    
        @Override
        Collection<V2> createValues() {
          return Collections2.transform(fromTable.values(), function);
        }
    
        @Override
        public Map<R, Map<C, V2>> rowMap() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 25.3K bytes
    - Click Count (0)
  7. guava/src/com/google/common/collect/ImmutableMultimap.java

       */
      @Override
      public ImmutableCollection<V> values() {
        return (ImmutableCollection<V>) super.values();
      }
    
      @Override
      ImmutableCollection<V> createValues() {
        return new Values<>(this);
      }
    
      @Override
      UnmodifiableIterator<V> valueIterator() {
        return new UnmodifiableIterator<V>() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 28.1K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/Tables.java

          return fromTable.rowKeySet();
        }
    
        @Override
        public Set<C> columnKeySet() {
          return fromTable.columnKeySet();
        }
    
        @Override
        Collection<V2> createValues() {
          return Collections2.transform(fromTable.values(), function);
        }
    
        @Override
        public Map<R, Map<C, V2>> rowMap() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 24.9K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/Maps.java

        @Override
        public Collection<V> values() {
          Collection<V> result = values;
          return (result == null) ? values = createValues() : result;
        }
    
        Collection<V> createValues() {
          return new Values<>(this);
        }
      }
    
      abstract static class IteratorBasedAbstractMap<
              K extends @Nullable Object, V extends @Nullable Object>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  10. guava/src/com/google/common/collect/Maps.java

        @Override
        public Collection<V> values() {
          Collection<V> result = values;
          return (result == null) ? values = createValues() : result;
        }
    
        Collection<V> createValues() {
          return new Values<>(this);
        }
      }
    
      abstract static class IteratorBasedAbstractMap<
              K extends @Nullable Object, V extends @Nullable Object>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
Back to Top