Searched refs:ConstBlockXpr (Results 1 – 1 of 1) sorted by relevance
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 33 typedef const Block<const Derived> ConstBlockXpr; typedef 71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) … in block() 73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols); in block() 99 inline const ConstBlockXpr topRightCorner(Index cRows, Index cCols) const in topRightCorner() 101 return ConstBlockXpr(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 185 inline const ConstBlockXpr topLeftCorner(Index cRows, Index cCols) const in topLeftCorner() 187 return ConstBlockXpr(derived(), 0, 0, cRows, cCols); in topLeftCorner() 270 inline const ConstBlockXpr bottomRightCorner(Index cRows, Index cCols) const in bottomRightCorner() 272 return ConstBlockXpr(derived(), rows() - cRows, cols() - cCols, cRows, cCols); in bottomRightCorner() 355 inline const ConstBlockXpr bottomLeftCorner(Index cRows, Index cCols) const in bottomLeftCorner() [all …]
|