Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for cellColumnIndices (0.35 sec)

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

          values[rowIndex][columnIndex] = cell.getValue();
          rowCounts[rowIndex]++;
          columnCounts[columnIndex]++;
          cellRowIndices[i] = rowIndex;
          cellColumnIndices[i] = columnIndex;
        }
        this.cellRowIndices = cellRowIndices;
        this.cellColumnIndices = cellColumnIndices;
        this.rowMap = new RowMap();
        this.columnMap = new ColumnMap();
      }
    
      /** An immutable map implementation backed by an indexed nullable array. */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 10K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/DenseImmutableTable.java

          values[rowIndex][columnIndex] = cell.getValue();
          rowCounts[rowIndex]++;
          columnCounts[columnIndex]++;
          cellRowIndices[i] = rowIndex;
          cellColumnIndices[i] = columnIndex;
        }
        this.cellRowIndices = cellRowIndices;
        this.cellColumnIndices = cellColumnIndices;
        this.rowMap = new RowMap();
        this.columnMap = new ColumnMap();
      }
    
      /** An immutable map implementation backed by an indexed nullable array. */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 10K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableTable.java

          this.cellColumnIndices = cellColumnIndices;
        }
    
        static SerializedForm create(
            ImmutableTable<?, ?, ?> table, int[] cellRowIndices, int[] cellColumnIndices) {
          return new SerializedForm(
              table.rowKeySet().toArray(),
              table.columnKeySet().toArray(),
              table.values().toArray(),
              cellRowIndices,
              cellColumnIndices);
        }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/SparseImmutableTable.java

        int[] cellColumnIndices = new int[cellSet().size()];
        int i = 0;
        for (Cell<R, C, V> cell : cellSet()) {
          // requireNonNull is safe because the cell exists in the table.
          cellColumnIndices[i++] = requireNonNull(columnKeyToIndex.get(cell.getColumnKey()));
        }
        return SerializedForm.create(this, cellRowIndices, cellColumnIndices);
      }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableTable.java

          this.cellColumnIndices = cellColumnIndices;
        }
    
        static SerializedForm create(
            ImmutableTable<?, ?, ?> table, int[] cellRowIndices, int[] cellColumnIndices) {
          return new SerializedForm(
              table.rowKeySet().toArray(),
              table.columnKeySet().toArray(),
              table.values().toArray(),
              cellRowIndices,
              cellColumnIndices);
        }
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 17.3K bytes
    - Viewed (0)
Back to top