Home | History | Annotate | Download | only in util

Lines Matching refs:RowMajor

109                           ( (_Rows==1 && _Cols!=1) ? RowMajor
119 Options = IsColVector ? (_Options | ColMajor) & ~RowMajor
120 : IsRowVector ? (_Options | RowMajor) & ~ColMajor
131 row_major_bit = Options&RowMajor ? RowMajorBit : 0,
182 AutoAlign | (traits<T>::Flags&RowMajorBit ? RowMajor : ColMajor),
193 AutoAlign | (traits<T>::Flags&RowMajorBit ? RowMajor : ColMajor),
212 // AutoAlign | (traits<T>::Flags&RowMajorBit ? RowMajor : ColMajor),
245 (MaxRows==1&&MaxCols!=1) ? RowMajor : ColMajor,
263 (MaxCols==1&&MaxRows!=1) ? RowMajor : ColMajor,
416 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> MatrixRowType;
418 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> ArrayRowType;
431 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> MatrixColType;
433 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> ArrayColType;
448 typedef Matrix<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> MatrixDiagType;
449 typedef Array<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> ArrayDiagType;