Lines Matching refs:startCol
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()
623 inline ColsBlockXpr middleCols(Index startCol, Index numCols) in middleCols() argument
625 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols()
629 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const in middleCols() argument
631 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols()
649 inline typename NColsBlockXpr<N>::Type middleCols(Index startCol, Index n = N)
651 return typename NColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), n);
656 inline typename ConstNColsBlockXpr<N>::Type middleCols(Index startCol, Index n = N) const
658 return typename ConstNColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), n);
680 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) in block() argument
682 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol); in block()
687 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) const in block() argument
689 return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol); in block()
712 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol, in block() argument
715 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols); in block()
720 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol, in block() argument
723 …return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockC… in block()