Home | History | Annotate | Download | only in linear

Lines Matching refs:startColumn

288                                    final int startColumn, final int endColumn)
291 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
294 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
296 for (int j = startColumn; j <= endColumn; ++j) {
297 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
331 final int startColumn, final int endColumn,
336 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
338 final int columnsCount = endColumn + 1 - startColumn;
353 private int startColumn;
359 final int startColumn, final int endColumn) {
361 this.startColumn = startColumn;
367 destination[row - startRow][column - startColumn] = value;
370 }, startRow, endRow, startColumn, endColumn);
810 final int startColumn, final int endColumn)
812 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
814 startRow, endRow, startColumn, endColumn);
816 for (int column = startColumn; column <= endColumn; ++column) {
828 final int startColumn, final int endColumn)
830 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
832 startRow, endRow, startColumn, endColumn);
834 for (int column = startColumn; column <= endColumn; ++column) {
874 final int startColumn, final int endColumn)
876 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
878 startRow, endRow, startColumn, endColumn);
879 for (int column = startColumn; column <= endColumn; ++column) {
892 final int startColumn, final int endColumn)
894 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
896 startRow, endRow, startColumn, endColumn);
897 for (int column = startColumn; column <= endColumn; ++column) {
920 final int startColumn, final int endColumn)
922 return walkInRowOrder(visitor, startRow, endRow, startColumn, endColumn);
928 startColumn, final int endColumn)
930 return walkInRowOrder(visitor, startRow, endRow, startColumn, endColumn);
1048 * @param startColumn Initial column index
1053 final int startColumn, final int endColumn) {
1061 checkColumnIndex(startColumn);
1063 if (startColumn > endColumn) {
1065 startColumn, endColumn);