Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for nextInBucket (0.15 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        private final ImmutableEntry<E> nextInBucket;
    
        NonTerminalEntry(E element, int count, ImmutableEntry<E> nextInBucket) {
          super(element, count);
          this.nextInBucket = nextInBucket;
        }
    
        @Override
        public ImmutableEntry<E> nextInBucket() {
          return nextInBucket;
        }
      }
    
      @Override
      boolean isPartialView() {
        return false;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/HashBiMap.java

      }
    
      private int findEntry(
          @Nullable Object o,
          int oHash,
          int[] hashTable,
          int[] nextInBucket,
          @Nullable Object[] array) {
        for (int entry = hashTable[bucket(oHash)]; entry != ABSENT; entry = nextInBucket[entry]) {
          if (Objects.equals(array[entry], o)) {
            return entry;
          }
        }
        return ABSENT;
      }
    
      @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 37K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/Multisets.java

        public final E getElement() {
          return element;
        }
    
        @Override
        public final int getCount() {
          return count;
        }
    
        public @Nullable ImmutableEntry<E> nextInBucket() {
          return null;
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 41.3K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/Multisets.java

        public final E getElement() {
          return element;
        }
    
        @Override
        public final int getCount() {
          return count;
        }
    
        public @Nullable ImmutableEntry<E> nextInBucket() {
          return null;
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 41.2K bytes
    - Click Count (0)
Back to Top