Home | History | Annotate | Download | only in Core

Lines Matching refs:coeffRef

97     inline ScalarWithConstIfNotLvalue* data() { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
98 inline const Scalar* data() const { return &(m_matrix.const_cast_derived().coeffRef(rowOffset(), colOffset())); }
100 inline Scalar& coeffRef(Index row, Index)
103 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
106 inline const Scalar& coeffRef(Index row, Index) const
108 return m_matrix.const_cast_derived().coeffRef(row+rowOffset(), row+colOffset());
116 inline Scalar& coeffRef(Index index)
119 return m_matrix.const_cast_derived().coeffRef(index+rowOffset(), index+colOffset());
122 inline const Scalar& coeffRef(Index index) const
124 return m_matrix.const_cast_derived().coeffRef(index+rowOffset(), index+colOffset());