Home | History | Annotate | Download | only in linear

Lines Matching defs:startRow

287     public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow,
291 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
294 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
295 for (int i = startRow; i <= endRow; ++i) {
297 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
330 public void copySubMatrix(final int startRow, final int endRow,
336 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
337 final int rowsCount = endRow + 1 - startRow;
350 private int startRow;
358 final int startRow, final int endRow,
360 this.startRow = startRow;
367 destination[row - startRow][column - startColumn] = value;
370 }, startRow, endRow, startColumn, endColumn);
809 final int startRow, final int endRow,
812 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
814 startRow, endRow, startColumn, endColumn);
815 for (int row = startRow; row <= endRow; ++row) {
827 final int startRow, final int endRow,
830 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
832 startRow, endRow, startColumn, endColumn);
833 for (int row = startRow; row <= endRow; ++row) {
873 final int startRow, final int endRow,
876 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
878 startRow, endRow, startColumn, endColumn);
880 for (int row = startRow; row <= endRow; ++row) {
891 final int startRow, final int endRow,
894 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
896 startRow, endRow, startColumn, endColumn);
898 for (int row = startRow; row <= endRow; ++row) {
919 final int startRow, final int endRow,
922 return walkInRowOrder(visitor, startRow, endRow, startColumn, endColumn);
927 final int startRow, final int endRow,
930 return walkInRowOrder(visitor, startRow, endRow, startColumn, endColumn);
1046 * @param startRow Initial row index
1052 protected void checkSubMatrixIndex(final int startRow, final int endRow,
1054 checkRowIndex(startRow);
1056 if (startRow > endRow) {
1058 startRow, endRow);