Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for incrementExpectedModCount (0.27 seconds)

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

            checkForConcurrentModification();
            checkRemove(indexToRemove >= 0);
            incrementExpectedModCount();
            CompactHashSet.this.remove(element(indexToRemove));
            currentIndex = adjustAfterRemove(currentIndex, indexToRemove);
            indexToRemove = -1;
          }
    
          void incrementExpectedModCount() {
            expectedMetadata += CompactHashing.MODIFICATION_COUNT_INCREMENT;
          }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 23.9K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/CompactHashSet.java

            checkForConcurrentModification();
            checkRemove(indexToRemove >= 0);
            incrementExpectedModCount();
            CompactHashSet.this.remove(element(indexToRemove));
            currentIndex = adjustAfterRemove(currentIndex, indexToRemove);
            indexToRemove = -1;
          }
    
          void incrementExpectedModCount() {
            expectedMetadata += CompactHashing.MODIFICATION_COUNT_INCREMENT;
          }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 24.7K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/CompactHashMap.java

          checkForConcurrentModification();
          checkRemove(indexToRemove >= 0);
          incrementExpectedModCount();
          CompactHashMap.this.remove(key(indexToRemove));
          currentIndex = adjustAfterRemove(currentIndex, indexToRemove);
          indexToRemove = -1;
        }
    
        void incrementExpectedModCount() {
          expectedMetadata += CompactHashing.MODIFICATION_COUNT_INCREMENT;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 39.6K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/CompactHashMap.java

          checkForConcurrentModification();
          checkRemove(indexToRemove >= 0);
          incrementExpectedModCount();
          CompactHashMap.this.remove(key(indexToRemove));
          currentIndex = adjustAfterRemove(currentIndex, indexToRemove);
          indexToRemove = -1;
        }
    
        void incrementExpectedModCount() {
          expectedMetadata += CompactHashing.MODIFICATION_COUNT_INCREMENT;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 35.7K bytes
    - Click Count (0)
Back to Top