Lines Matching refs:Cond
412 const Expr *Cond = S->getCond(); in visitWhileStmt() local
420 if (!this->visitBool(Cond)) in visitWhileStmt()
441 const Expr *Cond = S->getCond(); in visitDoStmt() local
457 if (!this->visitBool(Cond)) in visitDoStmt()
471 const Expr *Cond = S->getCond(); in visitForStmt() local
484 if (Cond) { in visitForStmt()
485 if (!this->visitBool(Cond)) in visitForStmt()
510 const Expr *Cond = S->getCond(); in visitCXXForRangeStmt() local
535 if (!this->visitBool(Cond)) in visitCXXForRangeStmt()
581 const Expr *Cond = S->getCond(); in visitSwitchStmt() local
582 PrimType CondT = this->classifyPrim(Cond->getType()); in visitSwitchStmt()
586 unsigned CondVar = this->allocateLocalPrimitive(Cond, CondT, true, false); in visitSwitchStmt()
593 if (!this->visit(Cond)) in visitSwitchStmt()