Home | History | Annotate | Download | only in Sema

Lines Matching full:rhsval

352                     SourceLocation DotDotDotLoc, Expr *RHSVal,
372 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent()) {
373 RHSVal = VerifyIntegerConstantExpression(RHSVal).get();
380 if (RHSVal)
381 RHSVal = ActOnFinishFullExpr(RHSVal, RHSVal->getExprLoc(), false,
384 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
1172 llvm::APSInt RhsVal = SrcExpr->EvaluateKnownConstInt(Context);
1173 AdjustAPSInt(RhsVal, DstWidth, DstIsSigned);
1194 while (EI != EIend && EI->first < RhsVal)
1196 if (EI == EIend || EI->first != RhsVal) {