- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for lastEntry (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/collect/LinkedHashMultimap.java
} if (succ == null) { lastEntry = pred; } else { succ.predecessorInValueSet = pred; } } private void deleteFromValueSet(ValueEntry<K, V> entry) { succeedsInValueSet(entry.predecessorInValueSet, entry.successorInValueSet); } private void appendToValueSet(ValueEntry<K, V> newEntry) { succeedsInValueSet(lastEntry, newEntry); lastEntry = newEntry;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 19.2K bytes - Click Count (0) -
guava/src/com/google/common/collect/LinkedHashMultimap.java
} if (succ == null) { lastEntry = pred; } else { succ.predecessorInValueSet = pred; } } private void deleteFromValueSet(ValueEntry<K, V> entry) { succeedsInValueSet(entry.predecessorInValueSet, entry.successorInValueSet); } private void appendToValueSet(ValueEntry<K, V> newEntry) { succeedsInValueSet(lastEntry, newEntry); lastEntry = newEntry;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 20K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java
assertTrue(Thread.holdsLock(mutex)); return delegate().higherKey(key); } @Override public @Nullable Entry<K, V> lastEntry() { assertTrue(Thread.holdsLock(mutex)); return delegate().lastEntry(); } @Override public @Nullable Entry<K, V> lowerEntry(K key) { assertTrue(Thread.holdsLock(mutex)); return delegate().lowerEntry(key);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 12.8K bytes - Click Count (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 12:40:22 GMT 2026 - 21.6K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java
return delegate.isEmpty(); } @Override public NavigableSet<K> keySet() { return navigableKeySet(); } @Override public @Nullable Entry<K, V> lastEntry() { return delegate.lastEntry(); } @Override public K lastKey() { return delegate.lastKey(); } @Override public @Nullable Entry<K, V> lowerEntry(K key) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 7.4K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java
return delegate.isEmpty(); } @Override public NavigableSet<K> keySet() { return navigableKeySet(); } @Override public @Nullable Entry<K, V> lastEntry() { return delegate.lastEntry(); } @Override public K lastKey() { return delegate.lastKey(); } @Override public @Nullable Entry<K, V> lowerEntry(K key) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 7.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
@Override public @Nullable Entry<K, V> lowerEntry(K key) { return headMap(key, false).lastEntry(); } @Override public @Nullable K lowerKey(K key) { return keyOrNull(lowerEntry(key)); } @Override public @Nullable Entry<K, V> floorEntry(K key) { return headMap(key, true).lastEntry(); } @Override public @Nullable K floorKey(K key) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 54.7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Maps.java
@Override public @Nullable K higherKey(@ParametricNullness K key) { return fromMap().higherKey(key); } @Override public @Nullable Entry<K, V2> lastEntry() { return transformEntry(fromMap().lastEntry()); } @Override public @Nullable Entry<K, V2> lowerEntry(@ParametricNullness K key) { return transformEntry(fromMap().lowerEntry(key)); }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) -
guava/src/com/google/common/collect/Maps.java
@Override public @Nullable K higherKey(@ParametricNullness K key) { return fromMap().higherKey(key); } @Override public @Nullable Entry<K, V2> lastEntry() { return transformEntry(fromMap().lastEntry()); } @Override public @Nullable Entry<K, V2> lowerEntry(@ParametricNullness K key) { return transformEntry(fromMap().lowerEntry(key)); }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) -
android/guava-tests/test/com/google/common/collect/MapsTest.java
{ Entry<Integer, String> entry = unmod.firstEntry(); assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four")); } { Entry<Integer, String> entry = unmod.lastEntry(); assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four")); } { @SuppressWarnings("unchecked")Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 63.2K bytes - Click Count (0)