Lines Matching refs:startRow

64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols)  in block()  argument
66 return BlockXpr(derived(), startRow, startCol, blockRows, blockCols); in block()
71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) … in block() argument
73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols); in block()
545 inline RowsBlockXpr middleRows(Index startRow, Index n) in middleRows() argument
547 return RowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()
552 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const in middleRows() argument
554 return ConstRowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()
575 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N)
577 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, n, cols());
583 inline typename ConstNRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N) const
585 return typename ConstNRowsBlockXpr<N>::Type(derived(), startRow, 0, n, cols());
780 inline typename FixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol) in block() argument
782 return typename FixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol); in block()
788 inline const typename ConstFixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol) c… in block() argument
790 return typename ConstFixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol); in block()
815 inline typename FixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol, in block() argument
818 …return typename FixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCo… in block()
823 inline const typename ConstFixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol, in block() argument
826 …return typename ConstFixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, bl… in block()