Home | History | Annotate | Download | only in linear

Lines Matching refs:startColumn

210                               final int startColumn, final int endColumn) {
243 final int startColumn, final int endColumn) {
262 final int startColumn, final int endColumn)
265 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
268 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
270 for (int j = startColumn; j <= endColumn; ++j) {
271 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
305 final int startColumn, final int endColumn,
310 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
312 final int columnsCount = endColumn + 1 - startColumn;
327 private int startColumn;
333 final int startColumn, final int endColumn) {
335 this.startColumn = startColumn;
341 destination[row - startRow][column - startColumn] = value;
344 }, startRow, endRow, startColumn, endColumn);
813 final int startColumn, final int endColumn)
815 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
817 startRow, endRow, startColumn, endColumn);
819 for (int column = startColumn; column <= endColumn; ++column) {
832 final int startColumn, final int endColumn)
834 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
836 startRow, endRow, startColumn, endColumn);
838 for (int column = startColumn; column <= endColumn; ++column) {
879 final int startColumn, final int endColumn)
881 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
883 startRow, endRow, startColumn, endColumn);
884 for (int column = startColumn; column <= endColumn; ++column) {
898 final int startColumn, final int endColumn)
900 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
902 startRow, endRow, startColumn, endColumn);
903 for (int column = startColumn; column <= endColumn; ++column) {
926 final int startColumn, final int endColumn)
928 return walkInRowOrder(visitor, startRow, endRow, startColumn, endColumn);
934 final int startColumn, final int endColumn)
936 return walkInRowOrder(visitor, startRow, endRow, startColumn, endColumn);