HomeSort by relevance Sort by last modified time
    Searched defs:startRow (Results 1 - 25 of 34) sorted by null

1 2

  /external/pdfium/fxbarcode/pdf417/
BC_PDF417BarcodeMatrix.cpp 47 void CBC_BarcodeMatrix::startRow() {
  /external/eigen/Eigen/src/Core/products/
TriangularSolverVector.h 62 Index startRow = IsLower ? pi : pi-actualPanelWidth;
67 LhsMapper(&lhs.coeffRef(startRow,startCol), lhsStride),
69 rhs + startRow, 1,
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 355 DenseIndex startRow;
366 startRow = 2;
371 startRow = 1;
382 DenseIndex row = startRow;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
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...]
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...]
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...]
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) {
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
    [all...]
  /external/eigen/Eigen/src/Core/
Block.h 128 inline Block(XprType& xpr, Index startRow, Index startCol)
129 : Impl(xpr, startRow, startCol)
132 eigen_assert(startRow >= 0 && BlockRows >= 0 && startRow + BlockRows <= xpr.rows()
140 Index startRow, Index startCol,
142 : Impl(xpr, startRow, startCol, blockRows, blockCols)
146 eigen_assert(startRow >= 0 && blockRows >= 0 && startRow <= xpr.rows() - blockRows
163 EIGEN_DEVICE_FUNC inline BlockImpl(XprType& xpr, Index startRow, Index startCol) : Impl(xpr, startRow, startCol) {
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/util/
TestUtils.java 218 final int startRow = region.top;
223 for (int row = startRow; row < endRow; row++) {
231 + startColumn + ", t=" + startRow + ", r=" + endColumn
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 35 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
36 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
66 Index startRow() const { return IsRowMajor ? m_outerStart : 0; }
115 inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
116 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
271 Index startRow() const { return IsRowMajor ? m_outerStart : 0; }
298 inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
299 : Base(xpr, startRow, startCol, blockRows, blockCols)
317 inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols)
318 : Base(xpr, startRow, startCol, blockRows, blockCols
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
BlockSparseMatrix.h 183 Index startRow = m_spblockmat.blockRowsIndex(bi);
184 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow;
185 return m_vec.middleRows(startRow, rowSize);
189 Index startRow = m_spblockmat.blockRowsIndex(bi);
190 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow;
191 return m_vec.block(startRow, j, rowSize, 1);
223 Index startRow = m_spblockmat.blockRowsIndex(bi);
224 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow;
225 return m_vec.middleRows(startRow, rowSize);
229 Index startRow = m_spblockmat.blockRowsIndex(bi)
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/cc/
CaptionWindowLayout.java 589 int startRow = Math.max(0, lines.length - (mRowLimit + 1));
591 TextUtils.join("\n", Arrays.copyOfRange(lines, startRow, lines.length));
593 mCurrentTextRow = lines.length - startRow - 1;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 439 int startRow = grid.getRow(state.bounds.y);
441 int rowSpan = endRow - startRow + 1;
443 Rect cellBounds = grid.getCellBounds(startRow, startColumn, rowSpan, columnSpan);
569 int startRow = grid.getRow(state.bounds.y);
571 int rowSpan = endRow - startRow + 1;
  /external/skia/src/gpu/
GrDistanceFieldGenFromVector.cpp 656 int startRow = (int)segBB.top();
661 SkASSERT((startRow >= 0) && "StartRow < 0!");
667 startRow = SkTMax(startRow, 0);
670 for (int row = startRow; row < endRow; ++row) {
  /external/skqp/src/gpu/
GrDistanceFieldGenFromVector.cpp 656 int startRow = (int)segBB.top();
661 SkASSERT((startRow >= 0) && "StartRow < 0!");
667 startRow = SkTMax(startRow, 0);
670 for (int row = startRow; row < endRow; ++row) {
  /frameworks/support/media/src/main/java/androidx/media/subtitle/
Cea608CCParser.java 595 int startRow = mRow - windowSize + 1;
596 if (startRow < 1) {
597 startRow = 1;
599 for (i = startRow; i < mRow; i++) {
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 291 int startRow = (mScrollY - mSpec.mCellSpacing) / mBlockHeight;
295 // Limit startRow and endRow to the valid range.
297 startRow = Math.max(Math.min(startRow, mRows - 1), 0);
299 mImageBlockManager.setVisibleRows(startRow, endRow);
618 int startRow =
620 int topPos = startRow * mColumns;
660 int startRow = (mScrollY - mSpec.mCellSpacing) / mBlockHeight;
664 // Limit startRow and endRow to the valid range.
666 startRow = Math.max(Math.min(startRow, mRows - 1), 0)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 541 int startRow = position / (mSlotHeight + mSlotGap);
542 int start = Math.max(0, mUnitCount * startRow);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardBuilder.java 308 startRow(row);
423 startRow(row);
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/media/subtitle/
ClosedCaptionRenderer.java 812 int startRow = mRow - windowSize + 1;
813 if (startRow < 1) {
814 startRow = 1;
816 for (i = startRow; i < mRow; i++) {
    [all...]
  /frameworks/base/media/java/android/media/
ClosedCaptionRenderer.java 819 int startRow = mRow - windowSize + 1;
820 if (startRow < 1) {
821 startRow = 1;
823 for (i = startRow; i < mRow; i++) {
    [all...]
  /external/guice/extensions/struts2/lib/
jsp-api-2.1.jar 
  /external/annotation-tools/asmx/test/lib/
log4j-1.2.9.jar 
  /external/guice/extensions/persist/lib/
log4j-1.2.14.jar 
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.2.14.jar 

Completed in 1314 milliseconds

1 2