• Home
  • Raw
  • Download

Lines Matching refs:startCol

54 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols)  in block()  argument
56 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
60 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index bloc… in block() argument
62 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
481 inline ColsBlockXpr middleCols(Index startCol, Index numCols) in middleCols() argument
483 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols()
487 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const in middleCols() argument
489 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols()
503 inline typename NColsBlockXpr<N>::Type middleCols(Index startCol) in middleCols() argument
505 return typename NColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), N); in middleCols()
510 inline typename ConstNColsBlockXpr<N>::Type middleCols(Index startCol) const in middleCols() argument
512 return typename ConstNColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), N); in middleCols()
534 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) in block() argument
536 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol); in block()
541 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) const in block() argument
543 return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol); in block()