Home
last modified time | relevance | path

Searched refs:CondResult (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaStmt.cpp1074 ExprResult CondResult = in CheckSwitchCondition() local
1076 if (CondResult.isInvalid()) in CheckSwitchCondition()
1081 Cond = CondResult.get(); in CheckSwitchCondition()
1711 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt() local
1712 if (CondResult.isInvalid()) in ActOnDoStmt()
1714 Cond = CondResult.get(); in ActOnDoStmt()
1716 CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false); in ActOnDoStmt()
1717 if (CondResult.isInvalid()) in ActOnDoStmt()
1719 Cond = CondResult.get(); in ActOnDoStmt()
H A DSemaChecking.cpp12225 bool CondResult; in GetExprRange() local
12226 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C)) in GetExprRange()
12228 CondResult ? CO->getTrueExpr() : CO->getFalseExpr(), in GetExprRange()
H A DSemaExpr.cpp9120 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); in ActOnConditionalOp() local
9124 if (!CondResult.isUsable()) in ActOnConditionalOp()
9135 CondExpr = CondResult.get(); in ActOnConditionalOp()
/llvm-project-15.0.7/clang/include/clang/Parse/
H A DParser.h2097 Sema::ConditionResult &CondResult,
/llvm-project-15.0.7/clang/lib/AST/
H A DExprConstant.cpp15691 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx); in CheckICE() local
15692 if (CondResult.Kind == IK_NotICE) in CheckICE()
15693 return CondResult; in CheckICE()
15702 if (CondResult.Kind == IK_ICEIfUnevaluated) in CheckICE()
15703 return CondResult; in CheckICE()