Home | History | Annotate | Download | only in Parse

Lines Matching refs:CondVar

971   Decl *CondVar = 0;
972 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
1061 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
1100 Decl *CondVar = 0;
1101 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
1105 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
1192 Decl *CondVar = 0;
1193 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1219 if ((Cond.isInvalid() && !CondVar) || Body.isInvalid())
1222 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());