Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for checkForConcurrentModification (0.39 sec)

  1. android/guava/src/com/google/common/collect/LinkedListMultimap.java

              next();
            }
          }
          current = null;
        }
    
        private void checkForConcurrentModification() {
          if (modCount != expectedModCount) {
            throw new ConcurrentModificationException();
          }
        }
    
        @Override
        public boolean hasNext() {
          checkForConcurrentModification();
          return next != null;
        }
    
        @CanIgnoreReturnValue
        @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 27.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

        @ParametricNullness
        abstract T result(int entryIndex);
    
        private void checkForConcurrentModification() {
          if (backingMap.modCount != expectedModCount) {
            throw new ConcurrentModificationException();
          }
        }
    
        @Override
        public boolean hasNext() {
          checkForConcurrentModification();
          return entryIndex >= 0;
        }
    
        @Override
        @ParametricNullness
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/CompactHashSet.java

          @Override
          public boolean hasNext() {
            return currentIndex >= 0;
          }
    
          @Override
          @ParametricNullness
          public E next() {
            checkForConcurrentModification();
            if (!hasNext()) {
              throw new NoSuchElementException();
            }
            indexToRemove = currentIndex;
            E result = element(currentIndex);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 05 21:38:59 GMT 2024
    - 24K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashSet.java

          @Override
          public boolean hasNext() {
            return currentIndex >= 0;
          }
    
          @Override
          @ParametricNullness
          public E next() {
            checkForConcurrentModification();
            if (!hasNext()) {
              throw new NoSuchElementException();
            }
            indexToRemove = currentIndex;
            E result = element(currentIndex);
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Feb 05 21:38:59 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactHashMap.java

          return currentIndex >= 0;
        }
    
        @ParametricNullness
        abstract T getOutput(int entry);
    
        @Override
        @ParametricNullness
        public T next() {
          checkForConcurrentModification();
          if (!hasNext()) {
            throw new NoSuchElementException();
          }
          indexToRemove = currentIndex;
          T result = getOutput(currentIndex);
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 39.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashMap.java

          return currentIndex >= 0;
        }
    
        @ParametricNullness
        abstract T getOutput(int entry);
    
        @Override
        @ParametricNullness
        public T next() {
          checkForConcurrentModification();
          if (!hasNext()) {
            throw new NoSuchElementException();
          }
          indexToRemove = currentIndex;
          T result = getOutput(currentIndex);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 35.8K bytes
    - Viewed (0)
Back to top