Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp688 ExprResult CondResult = in CheckSwitchCondition() local
690 if (CondResult.isInvalid()) in CheckSwitchCondition()
695 Cond = CondResult.get(); in CheckSwitchCondition()
1320 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt() local
1321 if (CondResult.isInvalid()) in ActOnDoStmt()
1323 Cond = CondResult.get(); in ActOnDoStmt()
1325 CondResult = ActOnFinishFullExpr(Cond, DoLoc); in ActOnDoStmt()
1326 if (CondResult.isInvalid()) in ActOnDoStmt()
1328 Cond = CondResult.get(); in ActOnDoStmt()
H A DSemaChecking.cpp9710 bool CondResult; in GetExprRange() local
9711 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C)) in GetExprRange()
9712 return GetExprRange(C, CondResult ? CO->getTrueExpr() in GetExprRange()
H A DSemaExpr.cpp7479 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr); in ActOnConditionalOp() local
7483 if (!CondResult.isUsable()) in ActOnConditionalOp()
7494 CondExpr = CondResult.get(); in ActOnConditionalOp()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp11499 ICEDiag CondResult = CheckICE(Exp->getCond(), Ctx); in CheckICE() local
11500 if (CondResult.Kind == IK_NotICE) in CheckICE()
11501 return CondResult; in CheckICE()
11510 if (CondResult.Kind == IK_ICEIfUnevaluated) in CheckICE()
11511 return CondResult; in CheckICE()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h1895 Sema::ConditionResult &CondResult,