/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 56 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/ |
D | InfoBarLayout.java | 353 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/ |
D | TriangularSolverVector.h | 58 Index startRow = IsLower ? pi : pi-actualPanelWidth; 63 &lhs.coeffRef(startRow,startCol), lhsStride, 65 rhs + startRow, 1,
|
/external/eigen/Eigen/src/Core/ |
D | Block.h | 292 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/ |
D | SparseBlock.h | 57 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/ |
D | TestCertUtils.java | 721 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/ |
D | SkMovie_gif.cpp | 130 int startRow) in copyInterlaceGroup() argument 134 for (row = startRow; row < copyHeight; row += rowStep) { in copyInterlaceGroup()
|
/external/chromium_org/third_party/skia/src/images/ |
D | SkMovie_gif.cpp | 130 int startRow) in copyInterlaceGroup() argument 134 for (row = startRow; row < copyHeight; row += rowStep) { in copyInterlaceGroup()
|
/external/eigen/doc/ |
D | SparseQuickReference.dox | 190 sm1.block(startRow, startCol, rows, cols); 191 sm1.block(startRow, startCol);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTableSection.cpp | 1326 unsigned startRow = nextRow > 0 ? nextRow - 1 : 0; in spannedRows() local 1338 return CellSpan(startRow, endRow); in spannedRows()
|