Lines Matching refs:ConstFixedBlockXpr

36 template<int Rows, int Cols> struct ConstFixedBlockXpr { typedef Block<const Derived,Rows,Cols> Typ…  struct
126 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topRightCorner() const in topRightCorner()
128 return typename ConstFixedBlockXpr<CRows,CCols>::Type(derived(), 0, cols() - CCols); in topRightCorner()
158 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topRightCorner(Index cRows, Index cCols… in topRightCorner()
160 return typename ConstFixedBlockXpr<CRows,CCols>::Type(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner()
211 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topLeftCorner() const in topLeftCorner()
213 return typename ConstFixedBlockXpr<CRows,CCols>::Type(derived(), 0, 0); in topLeftCorner()
243 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topLeftCorner(Index cRows, Index cCols)… in topLeftCorner()
245 return typename ConstFixedBlockXpr<CRows,CCols>::Type(derived(), 0, 0, cRows, cCols); in topLeftCorner()
296 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type bottomRightCorner() const in bottomRightCorner()
298 return typename ConstFixedBlockXpr<CRows,CCols>::Type(derived(), rows() - CRows, cols() - CCols); in bottomRightCorner()
328 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type bottomRightCorner(Index cRows, Index cC… in bottomRightCorner()
330 …return typename ConstFixedBlockXpr<CRows,CCols>::Type(derived(), rows() - cRows, cols() - cCols, c… in bottomRightCorner()
381 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type bottomLeftCorner() const in bottomLeftCorner()
383 return typename ConstFixedBlockXpr<CRows,CCols>::Type(derived(), rows() - CRows, 0); in bottomLeftCorner()
413 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type bottomLeftCorner(Index cRows, Index cCo… in bottomLeftCorner()
415 return typename ConstFixedBlockXpr<CRows,CCols>::Type(derived(), rows() - cRows, 0, cRows, cCols); in bottomLeftCorner()
788 inline const typename ConstFixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol) c… in block()
790 return typename ConstFixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol); in block()
823 inline const typename ConstFixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol, in block()
826 …return typename ConstFixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, bl… in block()