Home | History | Annotate | Download | only in Core

Lines Matching refs:coeffRef

66     inline Scalar& coeffRef(Index row, Index col)
68 return m_expression.const_cast_derived().coeffRef(row, col);
71 inline const Scalar& coeffRef(Index row, Index col) const
73 return m_expression.const_cast_derived().coeffRef(row, col);
81 inline Scalar& coeffRef(Index index)
83 return m_expression.const_cast_derived().coeffRef(index);
86 inline const Scalar& coeffRef(Index index) const
88 return m_expression.const_cast_derived().coeffRef(index);
179 inline Scalar& coeffRef(Index row, Index col)
181 return m_expression.const_cast_derived().coeffRef(row, col);
184 inline const Scalar& coeffRef(Index row, Index col) const
186 return m_expression.derived().coeffRef(row, col);
194 inline Scalar& coeffRef(Index index)
196 return m_expression.const_cast_derived().coeffRef(index);
199 inline const Scalar& coeffRef(Index index) const
201 return m_expression.const_cast_derived().coeffRef(index);