Home | History | Annotate | Download | only in Parse

Lines Matching refs:CondVar

991   Decl *CondVar = 0;
992 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
1081 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
1120 Decl *CondVar = 0;
1121 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
1125 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
1212 Decl *CondVar = 0;
1213 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1239 if ((Cond.isInvalid() && !CondVar) || Body.isInvalid())
1242 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());