Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for nextEntry (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        /** Finds the next entry in the current chain. Returns {@code true} if an entry was found. */
        boolean nextInChain() {
          if (nextEntry != null) {
            for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) {
              if (advanceTo(nextEntry)) {
                return true;
              }
            }
          }
          return false;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
Back to top