Home
last modified time | relevance | path

Searched refs:ConstNRowsBlockXpr (Results 1 – 2 of 2) sorted by relevance

/external/eigen/Eigen/src/plugins/
DBlockMethods.h30 template<int N> struct ConstNRowsBlockXpr { typedef const Block<const Derived, N, internal::traits<… struct
469 inline typename ConstNRowsBlockXpr<N>::Type topRows(Index n = N) const
471 return typename ConstNRowsBlockXpr<N>::Type(derived(), 0, 0, n, cols());
525 inline typename ConstNRowsBlockXpr<N>::Type bottomRows(Index n = N) const
527 return typename ConstNRowsBlockXpr<N>::Type(derived(), rows() - n, 0, n, cols());
583 inline typename ConstNRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N) const
585 return typename ConstNRowsBlockXpr<N>::Type(derived(), startRow, 0, n, cols());
/external/eigen/Eigen/src/Geometry/
DHomogeneous.h400 typedef typename Rhs::template ConstNRowsBlockXpr<Dim>::Type LinearBlockConst;