Home | History | Annotate | Download | only in Sema

Lines Matching refs:RHSVal

377                     SourceLocation DotDotDotLoc, Expr *RHSVal,
414 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent()) {
415 RHSVal = VerifyIntegerConstantExpression(RHSVal).get();
425 auto RHS = RHSVal ? ActOnFinishFullExpr(RHSVal, RHSVal->getExprLoc(), false,
1196 llvm::APSInt RhsVal = SrcExpr->EvaluateKnownConstInt(Context);
1197 AdjustAPSInt(RhsVal, DstWidth, DstIsSigned);
1201 if (!IsValueInFlagEnum(ED, RhsVal, true))
1224 while (EI != EIend && EI->first < RhsVal)
1226 if (EI == EIend || EI->first != RhsVal) {