Home | History | Annotate | Download | only in plugins

Lines Matching refs:BlockCols

43   * \param blockCols the number of columns in the block
54 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols)
56 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols);
60 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) const
62 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols);
519 * The template parameters \a BlockRows and \a BlockCols are the number of
533 template<int BlockRows, int BlockCols>
534 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol)
536 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol);
540 template<int BlockRows, int BlockCols>
541 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) const
543 return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol);