Home | History | Annotate | Download | only in Sema

Lines Matching refs:RHSResult

4660   ExprResult RHSResult = CheckPlaceholderExpr(RHS.get());
4661 if (!RHSResult.isUsable()) return QualType();
4662 RHS = move(RHSResult);
6858 ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS);
6859 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
6861 if (LHSResult.isInvalid() || RHSResult.isInvalid())
6864 RHS = RHSResult.take();