Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateWholeRowField (0.28 sec)

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

        void updateWholeRowField() {
          if (wholeRow == null || (wholeRow.isEmpty() && backingMap.containsKey(rowKey))) {
            wholeRow = (SortedMap<C, V>) backingMap.get(rowKey);
          }
        }
    
        @Override
        @Nullable SortedMap<C, V> computeBackingRowMap() {
          updateWholeRowField();
          SortedMap<C, V> map = wholeRow;
          if (map != null) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeBasedTable.java

        void updateWholeRowField() {
          if (wholeRow == null || (wholeRow.isEmpty() && backingMap.containsKey(rowKey))) {
            wholeRow = (SortedMap<C, V>) backingMap.get(rowKey);
          }
        }
    
        @Override
        @Nullable SortedMap<C, V> computeBackingRowMap() {
          updateWholeRowField();
          SortedMap<C, V> map = wholeRow;
          if (map != null) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
Back to top