Searched refs:ConstFixedBlockXpr (Results 1 – 1 of 1) sorted by relevance
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 36 template<int Rows, int Cols> struct ConstFixedBlockXpr { typedef Block<const Derived,Rows,Cols> Typ… argument 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() [all …]
|