Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for lastEntryForEachKey (0.09 seconds)

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

              // This could be improved, but orderEntriesByValue is rather rarely used anyway.
              Entry<K, V>[] lastEntryForEachKey = lastEntryForEachKey(nonNullEntries, size);
              if (lastEntryForEachKey != null) {
                nonNullEntries = lastEntryForEachKey;
                localSize = lastEntryForEachKey.length;
              }
            }
            sort(
                nonNullEntries,
                0,
                localSize,
    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)
  2. android/guava/src/com/google/common/collect/ImmutableMap.java

              // We want to retain only the last-put value for any given key, before sorting.
              // This could be improved, but orderEntriesByValue is rather rarely used anyway.
              localAlternatingKeysAndValues = lastEntryForEachKey(localAlternatingKeysAndValues, size);
              if (localAlternatingKeysAndValues.length < alternatingKeysAndValues.length) {
                localSize = localAlternatingKeysAndValues.length >>> 1;
              }
            }
    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)
Back to Top