Searched refs:ConstBlockXpr (Results 1 - 1 of 1) sorted by relevance

/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h33 typedef const Block<const Derived> ConstBlockXpr; typedef
71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) const
73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols);
99 inline const ConstBlockXpr topRightCorner(Index cRows, Index cCols) const
101 return ConstBlockXpr(derived(), 0, cols() - cCols, cRows, cCols);
185 inline const ConstBlockXpr topLeftCorner(Index cRows, Index cCols) const
187 return ConstBlockXpr(derived(), 0, 0, cRows, cCols);
270 inline const ConstBlockXpr bottomRightCorner(Index cRows, Index cCols) const
272 return ConstBlockXpr(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
355 inline const ConstBlockXpr bottomLeftCorne
[all...]

Completed in 754 milliseconds