- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for nextEntry (0.03 sec)
-
android/guava/src/com/google/common/collect/LinkedHashMultimap.java
return new Iterator<Entry<K, V>>() { @Nullable ValueEntry<K, V> nextEntry = multimapIterationChain.firstEntry; @Nullable ValueEntry<K, V> toRemove; @Override public boolean hasNext() { return nextEntry != null; } @Override public Entry<K, V> next() { ValueEntry<K, V> entry = nextEntry; if (entry == null) { throw new NoSuchElementException();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.1K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
lastEntry = nextEntry; nextEntry = null; return new WriteThroughEntry(lastEntry.getKey(), lastEntry.getValue().getValue()); } @Override public boolean hasNext() { if (nextEntry == null) { while (iterator.hasNext()) { Entry<K, Timestamped<V>> next = iterator.next(); if (!isExpired(next.getValue())) { nextEntry = next; return true;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/SortedMapNavigationTester.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 6.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java
* (pointing to the nextEntry entry in the linked list). The pointers in [size(), entries.length) * are all "null" (UNSET). * * <p>A node with "prev" pointer equal to {@code ENDPOINT} is the first node in the linked list, * and a node with "nextEntry" pointer equal to {@code ENDPOINT} is the last node. */ @VisibleForTesting transient long[] links;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0)