Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for maintainEmptyInvariant (0.34 seconds)

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

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

            return null;
          }
          V result = Maps.safeRemove(backingRowMap, key);
          maintainEmptyInvariant();
          return result;
        }
    
        @Override
        public void clear() {
          updateBackingRowMapField();
          if (backingRowMap != null) {
            backingRowMap.clear();
          }
          maintainEmptyInvariant();
        }
    
        @Override
        public int size() {
          updateBackingRowMapField();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/StandardTable.java

            return null;
          }
          V result = Maps.safeRemove(backingRowMap, key);
          maintainEmptyInvariant();
          return result;
        }
    
        @Override
        public void clear() {
          updateBackingRowMapField();
          if (backingRowMap != null) {
            backingRowMap.clear();
          }
          maintainEmptyInvariant();
        }
    
        @Override
        public int size() {
          updateBackingRowMapField();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 29.4K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/TreeBasedTable.java

            }
            if (upperBound != null) {
              map = map.headMap(upperBound);
            }
            return map;
          }
          return null;
        }
    
        @Override
        void maintainEmptyInvariant() {
          updateWholeRowField();
          if (wholeRow != null && wholeRow.isEmpty()) {
            backingMap.remove(rowKey);
            wholeRow = null;
            backingRowMap = null;
          }
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 18 15:05:43 GMT 2025
    - 11.6K bytes
    - Click Count (0)
Back to Top