• Home
  • Raw
  • Download

Lines Matching refs:startRow

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()
347 inline RowsBlockXpr middleRows(Index startRow, Index numRows) in middleRows() argument
349 return RowsBlockXpr(derived(), startRow, 0, numRows, cols()); in middleRows()
353 inline ConstRowsBlockXpr middleRows(Index startRow, Index numRows) const in middleRows() argument
355 return ConstRowsBlockXpr(derived(), startRow, 0, numRows, cols()); in middleRows()
369 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow) in middleRows() argument
371 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, N, cols()); in middleRows()
376 inline typename ConstNRowsBlockXpr<N>::Type middleRows(Index startRow) const in middleRows() argument
378 return typename ConstNRowsBlockXpr<N>::Type(derived(), startRow, 0, N, cols()); in middleRows()
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()