HomeSort by relevance Sort by last modified time
    Searched refs:endRow (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DefaultRealMatrixChangingVisitor.java 36 int startRow, int endRow, int startColumn, int endColumn) {
DefaultRealMatrixPreservingVisitor.java 36 int startRow, int endRow, int startColumn, int endColumn) {
RealMatrixChangingVisitor.java 37 * @param endRow Final row index (inclusive)
42 int startRow, int endRow, int startColumn, int endColumn);
RealMatrixPreservingVisitor.java 37 * @param endRow Final row index (inclusive)
42 int startRow, int endRow, int startColumn, int endColumn);
RealMatrix.java 133 * @param endRow Final row index (inclusive)
140 RealMatrix getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
161 * @param endRow Final row index (inclusive)
169 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn,
578 * @param endRow Final row index (inclusive)
598 int startRow, int endRow, int startColumn, int endColumn)
608 * @param endRow Final row index (inclusive)
628 int startRow, int endRow, int startColumn, int endColumn)
686 * @param endRow Final row index (inclusive)
706 int startRow, int endRow, int startColumn, int endColumn
    [all...]
FieldMatrixChangingVisitor.java 38 * @param endRow Final row index (inclusive)
43 int startRow, int endRow, int startColumn, int endColumn);
FieldMatrixPreservingVisitor.java 38 * @param endRow Final row index (inclusive)
43 int startRow, int endRow, int startColumn, int endColumn);
Array2DRowRealMatrix.java 493 final int startRow, final int endRow,
496 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
498 startRow, endRow, startColumn, endColumn);
499 for (int i = startRow; i <= endRow; ++i) {
511 final int startRow, final int endRow,
514 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
516 startRow, endRow, startColumn, endColumn);
517 for (int i = startRow; i <= endRow; ++i) {
560 final int startRow, final int endRow,
563 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn)
    [all...]
DefaultFieldMatrixChangingVisitor.java 49 int startRow, int endRow, int startColumn, int endColumn) {
DefaultFieldMatrixPreservingVisitor.java 49 int startRow, int endRow, int startColumn, int endColumn) {
RealMatrixImpl.java 501 final int startRow, final int endRow,
504 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
506 startRow, endRow, startColumn, endColumn);
507 for (int i = startRow; i <= endRow; ++i) {
519 final int startRow, final int endRow,
522 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
524 startRow, endRow, startColumn, endColumn);
525 for (int i = startRow; i <= endRow; ++i) {
568 final int startRow, final int endRow,
571 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn)
    [all...]
AbstractRealMatrix.java 199 private double endRow;
209 final int startRow, final int endRow,
211 this.endRow = endRow;
219 if (row == endRow) {
242 final int startRow, final int endRow,
261 public RealMatrix getSubMatrix(final int startRow, final int endRow,
265 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
268 createMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
269 for (int i = startRow; i <= endRow; ++i)
    [all...]
AbstractFieldMatrix.java 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) {
330 public void copySubMatrix(final int startRow, final int endRow,
336 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
337 final int rowsCount = endRow + 1 - startRow;
358 final int startRow, final int endRow,
370 }, startRow, endRow, startColumn, endColumn);
809 final int startRow, final int endRow,
    [all...]
FieldMatrix.java 126 * @param endRow Final row index (inclusive)
133 FieldMatrix<T> getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)
154 * @param endRow Final row index (inclusive)
162 void copySubMatrix(int startRow, int endRow, int startColumn, int endColumn,
533 * @param endRow Final row index (inclusive)
553 int startRow, int endRow, int startColumn, int endColumn)
563 * @param endRow Final row index (inclusive)
583 int startRow, int endRow, int startColumn, int endColumn)
641 * @param endRow Final row index (inclusive)
661 int startRow, int endRow, int startColumn, int endColumn
    [all...]
Array2DRowFieldMatrix.java 485 final int startRow, final int endRow,
488 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
490 startRow, endRow, startColumn, endColumn);
491 for (int i = startRow; i <= endRow; ++i) {
503 final int startRow, final int endRow,
506 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
508 startRow, endRow, startColumn, endColumn);
509 for (int i = startRow; i <= endRow; ++i) {
552 final int startRow, final int endRow,
555 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn)
    [all...]
BigMatrix.java 129 * @param endRow Final row index
136 BigMatrix getSubMatrix(int startRow, int endRow, int startColumn,
BlockFieldMatrix.java 679 public FieldMatrix<T> getSubMatrix(final int startRow, final int endRow,
684 checkSubMatrixIndex(startRow, endRow, startColumn, endColumn);
688 new BlockFieldMatrix<T>(getField(), endRow - startRow + 1, endColumn - startColumn + 1);
    [all...]
BlockRealMatrix.java 704 public BlockRealMatrix getSubMatrix(final int startRow, final int endRow,
709 MatrixUtils.checkSubMatrixIndex(this, startRow, endRow, startColumn, endColumn);
713 new BlockRealMatrix(endRow - startRow + 1, endColumn - startColumn + 1);
    [all...]
MatrixUtils.java 557 * @param endRow Final row index
563 final int startRow, final int endRow,
566 checkRowIndex(m, endRow);
567 if (startRow > endRow) {
569 startRow, endRow);
684 int startRow, int endRow, int startColumn, int endColumn) {
728 int startRow, int endRow, int startColumn, int endColumn) {
    [all...]
  /external/skia/tests/
SwizzlerTest.cpp 21 uint32_t endRow,
39 const SkImageInfo fillInfo = imageInfo.makeWH(imageInfo.width(), endRow - startRow + 1);
48 for (uint32_t y = startRow; y <= endRow; y++) {
110 for (uint32_t endRow = startRow; endRow < height; endRow++) {
113 check_fill(r, colorInfo, startRow, endRow, colorRowBytes, offset,
115 check_fill(r, indexInfo, startRow, endRow, indexRowBytes, offset,
117 check_fill(r, grayInfo, startRow, endRow, grayRowBytes, offset,
119 check_fill(r, color565Info, startRow, endRow, color565RowBytes, offset
    [all...]
  /packages/apps/Terminal/src/com/android/terminal/
TerminalCallbacks.java 20 public int damage(int startRow, int endRow, int startCol, int endCol) {
Terminal.java 58 public void onDamage(int startRow, int endRow, int startCol, int endCol);
78 public int damage(int startRow, int endRow, int startCol, int endCol) {
80 mClient.onDamage(startRow, endRow, startCol, endCol);
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 292 int endRow = (mScrollY + getHeight() - mSpec.mCellSpacing - 1)
295 // Limit startRow and endRow to the valid range.
298 endRow = Math.max(Math.min(endRow, mRows), 0);
299 mImageBlockManager.setVisibleRows(startRow, endRow);
661 int endRow = (mScrollY + getHeight() - mSpec.mCellSpacing - 1)
664 // Limit startRow and endRow to the valid range.
667 endRow = Math.max(Math.min(endRow, mRows), 0);
670 int endIndex = Math.min(endRow * mColumns, mCount)
    [all...]
  /external/webrtc/tools/matlab/
rtpAnalyze.m 179 importfile(filename, startRow, endRow)
185 % STARTROW, ENDROW) Reads data from rows STARTROW through ENDROW of text
199 endRow = inf;
220 dataArray = textscan(fileID, formatSpec, endRow(1)-startRow(1)+1, ...
226 endRow(block)-startRow(block)+1, 'Delimiter', '', 'WhiteSpace', ...
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Table.java 202 cells.peek().endRow = false;
210 if (!lastCell.endRow) {
345 endRow();
354 private void endRow () {
359 if (cell.endRow) break;
364 cells.peek().endRow = true;
687 if (c.endRow) row++;
769 if (cellCount > 0 && !cells.peek().endRow) {
770 endRow();
    [all...]

Completed in 747 milliseconds

1 2 3 4 5