Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for incrementExpectedModCount (0.2 sec)

  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;
          }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 24K bytes
    - Viewed (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;
          }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top