Lines Matching refs:FixedBlockXpr

35 template<int Rows, int Cols> struct FixedBlockXpr { typedef Block<Derived,Rows,Cols> Type; };  struct
118 inline typename FixedBlockXpr<CRows,CCols>::Type topRightCorner() in topRightCorner()
120 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), 0, cols() - CCols); in topRightCorner()
151 inline typename FixedBlockXpr<CRows,CCols>::Type topRightCorner(Index cRows, Index cCols) in topRightCorner()
153 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner()
203 inline typename FixedBlockXpr<CRows,CCols>::Type topLeftCorner() in topLeftCorner()
205 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), 0, 0); in topLeftCorner()
236 inline typename FixedBlockXpr<CRows,CCols>::Type topLeftCorner(Index cRows, Index cCols) in topLeftCorner()
238 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), 0, 0, cRows, cCols); in topLeftCorner()
288 inline typename FixedBlockXpr<CRows,CCols>::Type bottomRightCorner() in bottomRightCorner()
290 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), rows() - CRows, cols() - CCols); in bottomRightCorner()
321 inline typename FixedBlockXpr<CRows,CCols>::Type bottomRightCorner(Index cRows, Index cCols) in bottomRightCorner()
323 …return typename FixedBlockXpr<CRows,CCols>::Type(derived(), rows() - cRows, cols() - cCols, cRows,… in bottomRightCorner()
373 inline typename FixedBlockXpr<CRows,CCols>::Type bottomLeftCorner() in bottomLeftCorner()
375 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), rows() - CRows, 0); in bottomLeftCorner()
406 inline typename FixedBlockXpr<CRows,CCols>::Type bottomLeftCorner(Index cRows, Index cCols) in bottomLeftCorner()
408 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), rows() - cRows, 0, cRows, cCols); in bottomLeftCorner()
780 inline typename FixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol) in block()
782 return typename FixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol); in block()
815 inline typename FixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol, in block()
818 …return typename FixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCo… in block()