Home | History | Annotate | Download | only in plugins

Lines Matching refs:cols

80   return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols);
86 return Block<const Derived>(derived(), 0, cols() - cCols, cRows, cCols);
101 return Block<Derived, CRows, CCols>(derived(), 0, cols() - CCols);
108 return Block<const Derived, CRows, CCols>(derived(), 0, cols() - CCols);
171 return Block<Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
177 return Block<const Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
192 return Block<Derived, CRows, CCols>(derived(), rows() - CRows, cols() - CCols);
199 return Block<const Derived, CRows, CCols>(derived(), rows() - CRows, cols() - CCols);
260 return RowsBlockXpr(derived(), 0, 0, n, cols());
266 return ConstRowsBlockXpr(derived(), 0, 0, n, cols());
281 return typename NRowsBlockXpr<N>::Type(derived(), 0, 0, N, cols());
288 return typename ConstNRowsBlockXpr<N>::Type(derived(), 0, 0, N, cols());
304 return RowsBlockXpr(derived(), rows() - n, 0, n, cols());
310 return ConstRowsBlockXpr(derived(), rows() - n, 0, n, cols());
325 return typename NRowsBlockXpr<N>::Type(derived(), rows() - N, 0, N, cols());
332 return typename ConstNRowsBlockXpr<N>::Type(derived(), rows() - N, 0, N, cols());
349 return RowsBlockXpr(derived(), startRow, 0, numRows, cols());
355 return ConstRowsBlockXpr(derived(), startRow, 0, numRows, cols());
371 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, N, cols());
378 return typename ConstNRowsBlockXpr<N>::Type(derived(), startRow, 0, N, cols());
438 return ColsBlockXpr(derived(), 0, cols() - n, rows(), n);
444 return ConstColsBlockXpr(derived(), 0, cols() - n, rows(), n);
459 return typename NColsBlockXpr<N>::Type(derived(), 0, cols() - N, rows(), N);
466 return typename ConstNColsBlockXpr<N>::Type(derived(), 0, cols() - N, rows(), N);