Lines Matching full:condvar
897 Decl *CondVar = 0;
898 if (ParseParenExprOrCondition(CondExp, CondVar, IfLoc, true))
962 if (CondExp.isInvalid() && !CondVar)
981 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(),
1022 Decl *CondVar = 0;
1023 if (ParseParenExprOrCondition(Cond, CondVar, SwitchLoc, false))
1027 = Actions.ActOnStartOfSwitchStmt(SwitchLoc, Cond.get(), CondVar);
1111 Decl *CondVar = 0;
1112 if (ParseParenExprOrCondition(Cond, CondVar, WhileLoc, true))
1138 if ((Cond.isInvalid() && !CondVar) || Body.isInvalid())
1141 return Actions.ActOnWhileStmt(WhileLoc, FullCond, CondVar, Body.get());