Home
last modified time | relevance | path

Searched refs:startRow (Results 1 – 10 of 10) sorted by relevance

/external/eigen/Eigen/src/plugins/
DBlockMethods.h56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument
58 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
62 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index bloc… in block() argument
64 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
477 inline RowsBlockXpr middleRows(Index startRow, Index n) in middleRows() argument
479 return RowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()
483 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const in middleRows() argument
485 return ConstRowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()
503 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N)
505 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, n, cols());
[all …]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
DInfoBarLayout.java353 startRow(); in placeGroups()
377 startRow(); in placeGroups()
385 startRow(); in placeGroups()
399 startRow(); in placeGroups()
422 if (group.isStacked && i != 0) startRow(); in placeGroup()
427 if (group.isStacked && i != group.views.length - 1) startRow(); in placeGroup()
460 private void startRow() { in startRow() method in InfoBarLayout
/external/eigen/Eigen/src/Core/products/
DTriangularSolverVector.h58 Index startRow = IsLower ? pi : pi-actualPanelWidth;
63 &lhs.coeffRef(startRow,startCol), lhsStride,
65 rhs + startRow, 1,
/external/eigen/Eigen/src/Core/
DBlock.h292 Index startRow() const
338 inline BlockImpl_dense(XprType& xpr, Index startRow, Index startCol)
339 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr)
347 Index startRow, Index startCol,
349 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol)), blockRows, blockCols),
/external/eigen/Eigen/src/SparseCore/
DSparseBlock.h57 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
58 …: m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRow… in BlockImpl()
119 …inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int block… in BlockImpl() argument
120 …: m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRow… in BlockImpl()
313 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols) in BlockImpl() argument
314 …: m_matrix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(b… in BlockImpl()
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
DTestCertUtils.java721 private static String getData(int col, int startRow) { in getData() argument
722 startRow = startRow % datas.length; in getData()
723 for (int i = startRow; i < datas.length; i++) { in getData()
/external/skia/src/images/
DSkMovie_gif.cpp130 int startRow) in copyInterlaceGroup() argument
134 for (row = startRow; row < copyHeight; row += rowStep) { in copyInterlaceGroup()
/external/chromium_org/third_party/skia/src/images/
DSkMovie_gif.cpp130 int startRow) in copyInterlaceGroup() argument
134 for (row = startRow; row < copyHeight; row += rowStep) { in copyInterlaceGroup()
/external/eigen/doc/
DSparseQuickReference.dox190 sm1.block(startRow, startCol, rows, cols);
191 sm1.block(startRow, startCol);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableSection.cpp1326 unsigned startRow = nextRow > 0 ? nextRow - 1 : 0; in spannedRows() local
1338 return CellSpan(startRow, endRow); in spannedRows()