Lines Matching refs:CondVar
1117 Decl *CondVar = nullptr;
1118 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
1205 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
1244 Decl *CondVar = nullptr;
1245 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
1249 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
1332 Decl *CondVar = nullptr;
1333 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1358 if ((Cond.isInvalid() && !CondVar) || Body.isInvalid())
1361 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());