Lines Matching refs:startCol
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()
715 inline ColsBlockXpr middleCols(Index startCol, Index numCols) in middleCols() argument
717 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols()
722 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const in middleCols() argument
724 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols()
745 inline typename NColsBlockXpr<N>::Type middleCols(Index startCol, Index n = N)
747 return typename NColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), n);
753 inline typename ConstNColsBlockXpr<N>::Type middleCols(Index startCol, Index n = N) const
755 return typename ConstNColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), n);
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()