- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 55 for lastEntry (0.07 seconds)
-
guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java
return new StandardElementSet(); } @Override public Entry<E> firstEntry() { return standardFirstEntry(); } @Override public Entry<E> lastEntry() { return standardLastEntry(); } @Override public Entry<E> pollFirstEntry() { return standardPollFirstEntry(); } @Override public Entry<E> pollLastEntry() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 6.5K 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/TreeRangeSet.java
: null; } @Override public Range<C> span() { Entry<Cut<C>, Range<C>> firstEntry = rangesByLowerBound.firstEntry(); Entry<Cut<C>, Range<C>> lastEntry = rangesByLowerBound.lastEntry(); if (firstEntry == null || lastEntry == null) { /* * Either both are null or neither is: Either the set is empty, or it's not. But we check both * to make the nullness checker happy. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 32.3K bytes - Click Count (0) -
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 - 52.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
return (entry == null) ? null : wrapEntry(entry); } @Override public @Nullable Entry<K, Collection<V>> lastEntry() { Entry<K, Collection<V>> entry = sortedMap().lastEntry(); return (entry == null) ? null : wrapEntry(entry); } @Override public @Nullable Entry<K, Collection<V>> pollFirstEntry() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Nov 17 22:50:48 GMT 2025 - 48.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
return (entry == null) ? null : wrapEntry(entry); } @Override public @Nullable Entry<K, Collection<V>> lastEntry() { Entry<K, Collection<V>> entry = sortedMap().lastEntry(); return (entry == null) ? null : wrapEntry(entry); } @Override public @Nullable Entry<K, Collection<V>> pollFirstEntry() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Aug 12 15:51:57 GMT 2025 - 46.9K 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/Synchronized.java
synchronized (mutex) { return delegate().higherKey(key); } } @Override public Map.@Nullable Entry<K, V> lastEntry() { synchronized (mutex) { return nullableSynchronizedEntry(delegate().lastEntry(), mutex); } } @Override public Map.@Nullable Entry<K, V> lowerEntry(K key) { synchronized (mutex) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Aug 08 15:11:10 GMT 2025 - 53K bytes - Click Count (0) -
guava/src/com/google/common/collect/Synchronized.java
synchronized (mutex) { return delegate().higherKey(key); } } @Override public Map.@Nullable Entry<K, V> lastEntry() { synchronized (mutex) { return nullableSynchronizedEntry(delegate().lastEntry(), mutex); } } @Override public Map.@Nullable Entry<K, V> lowerEntry(K key) { synchronized (mutex) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Aug 08 15:11:10 GMT 2025 - 56.9K 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)