Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/plugins/
DBlockMethods.h27 template<int N> struct ConstNColsBlockXpr { typedef const Block<const Derived, internal::traits<Der… argument
639 inline typename ConstNColsBlockXpr<N>::Type leftCols(Index n = N) const
641 return typename ConstNColsBlockXpr<N>::Type(derived(), 0, 0, rows(), n);
695 inline typename ConstNColsBlockXpr<N>::Type rightCols(Index n = N) const
697 return typename ConstNColsBlockXpr<N>::Type(derived(), 0, cols() - n, rows(), n);
753 inline typename ConstNColsBlockXpr<N>::Type middleCols(Index startCol, Index n = N) const
755 return typename ConstNColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), n);
/external/eigen/Eigen/src/Geometry/
DHomogeneous.h453 typedef typename Lhs::template ConstNColsBlockXpr<Dim>::Type LinearBlockConst;