Home | History | Annotate | Download | only in Sema

Lines Matching defs:RHSResult

5441   ExprResult RHSResult = CheckPlaceholderExpr(RHS.get());
5442 if (!RHSResult.isUsable()) return QualType();
5443 RHS = RHSResult;
7943 ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS);
7944 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
7946 if (LHSResult.isInvalid() || RHSResult.isInvalid())
7949 RHS = RHSResult.take();