Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for toArrayImpl (0.12 sec)

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

             */
            return ObjectArrays.toArrayImpl(delegate());
          }
        }
    
        @Override
        @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
        public <T extends @Nullable Object> T[] toArray(T[] array) {
          synchronized (mutex) {
            return ObjectArrays.toArrayImpl(delegate(), array);
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashMap.java

            }
            return a;
          }
          Map<K, V> delegate = delegateOrNull();
          return (delegate != null)
              ? delegate.keySet().toArray(a)
              : ObjectArrays.toArrayImpl(requireKeys(), 0, size, a);
        }
    
        @Override
        public boolean remove(@CheckForNull Object o) {
          Map<K, V> delegate = delegateOrNull();
          return (delegate != null)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/CompactHashSet.java

          if (a.length > 0) {
            a[0] = null;
          }
          return a;
        }
        Set<E> delegate = delegateOrNull();
        return (delegate != null)
            ? delegate.toArray(a)
            : ObjectArrays.toArrayImpl(requireElements(), 0, size, a);
      }
    
      /**
       * Ensures that this {@code CompactHashSet} has the smallest representation in memory, given its
       * current size.
       */
      public void trimToSize() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashSet.java

          if (a.length > 0) {
            a[0] = null;
          }
          return a;
        }
        Set<E> delegate = delegateOrNull();
        return (delegate != null)
            ? delegate.toArray(a)
            : ObjectArrays.toArrayImpl(requireElements(), 0, size, a);
      }
    
      /**
       * Ensures that this {@code CompactHashSet} has the smallest representation in memory, given its
       * current size.
       */
      public void trimToSize() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top