Home | History | Annotate | Download | only in Core

Lines Matching full:coeffref

52     inline Scalar& coeffRef(Index row, Index col)
54 return m_expression.const_cast_derived().coeffRef(row, col);
57 inline Scalar& coeffRef(Index index)
59 return m_expression.const_cast_derived().coeffRef(index);
62 inline Scalar& coeffRef(Index row, Index col) const
64 return m_expression.coeffRef(row, col);
67 inline Scalar& coeffRef(Index index) const
69 return m_expression.coeffRef(index);
79 m_expression.coeffRef(row, col) = _other.coeff(row, col);
80 _other.coeffRef(row, col) = tmp;
89 m_expression.coeffRef(index) = _other.coeff(index);
90 _other.coeffRef(index) = tmp;