Lines Matching refs:IsRowMajor
67 using Base::IsRowMajor;
75 …typedef DynamicSparseMatrix<Scalar,(Flags&~RowMajorBit)|(IsRowMajor?RowMajorBit:0), StorageIndex> …
82 inline Index rows() const { return IsRowMajor ? outerSize() : m_innerSize; }
83 inline Index cols() const { return IsRowMajor ? m_innerSize : outerSize(); }
96 const Index outer = IsRowMajor ? row : col;
97 const Index inner = IsRowMajor ? col : row;
107 const Index outer = IsRowMajor ? row : col;
108 const Index inner = IsRowMajor ? col : row;
154 return insertBackByOuterInner(IsRowMajor?row:col, IsRowMajor?col:row);
169 const Index outer = IsRowMajor ? row : col;
170 const Index inner = IsRowMajor ? col : row;
201 const Index outerSize = IsRowMajor ? rows : cols;
202 m_innerSize = convert_index(IsRowMajor ? cols : rows);
212 const Index outerSize = IsRowMajor ? rows : cols;
213 const Index innerSize = IsRowMajor ? cols : rows;
313 const Index outer = IsRowMajor ? row : col;
314 const Index inner = IsRowMajor ? col : row;
346 inline Index row() const { return IsRowMajor ? m_outer : Base::index(); }
347 inline Index col() const { return IsRowMajor ? Base::index() : m_outer; }
363 inline Index row() const { return IsRowMajor ? m_outer : Base::index(); }
364 inline Index col() const { return IsRowMajor ? Base::index() : m_outer; }