Home | History | Annotate | Download | only in Core

Lines Matching refs:m_expression

35     NoAlias(ExpressionType& expression) : m_expression(expression) {}
41 { return internal::assign_selector<ExpressionType,OtherDerived,false>::run(m_expression,other.derived()); }
48 SelfAdder tmp(m_expression);
52 return m_expression;
60 SelfAdder tmp(m_expression);
64 return m_expression;
70 { other.derived().addTo(m_expression); return m_expression; }
74 { other.derived().subTo(m_expression); return m_expression; }
78 { return m_expression.derived() += CoeffBasedProduct<Lhs,Rhs,NestByRefBit>(other.lhs(), other.rhs()); }
82 { return m_expression.derived() -= CoeffBasedProduct<Lhs,Rhs,NestByRefBit>(other.lhs(), other.rhs()); }
86 ExpressionType& m_expression;