Home | History | Annotate | Download | only in Sema

Lines Matching refs:RHSResult

4715   ExprResult RHSResult = CheckPlaceholderExpr(RHS.get());
4716 if (!RHSResult.isUsable()) return QualType();
4717 RHS = move(RHSResult);
7032 ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS);
7033 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
7035 if (LHSResult.isInvalid() || RHSResult.isInvalid())
7038 RHS = RHSResult.take();