Lines Matching refs:ToCondition
4697 Expr *ToCondition = Importer.Import(S->getCond()); in VisitIfStmt() local
4698 if (!ToCondition && S->getCond()) in VisitIfStmt()
4709 ToCondition, ToThenStmt, in VisitIfStmt()
4721 Expr *ToCondition = Importer.Import(S->getCond()); in VisitSwitchStmt() local
4722 if (!ToCondition && S->getCond()) in VisitSwitchStmt()
4726 ToCondition); in VisitSwitchStmt()
4756 Expr *ToCondition = Importer.Import(S->getCond()); in VisitWhileStmt() local
4757 if (!ToCondition && S->getCond()) in VisitWhileStmt()
4765 ToCondition, ToBody, in VisitWhileStmt()
4773 Expr *ToCondition = Importer.Import(S->getCond()); in VisitDoStmt() local
4774 if (!ToCondition && S->getCond()) in VisitDoStmt()
4779 return new (Importer.getToContext()) DoStmt(ToBody, ToCondition, in VisitDoStmt()
4788 Expr *ToCondition = Importer.Import(S->getCond()); in VisitForStmt() local
4789 if (!ToCondition && S->getCond()) in VisitForStmt()
4808 ToInit, ToCondition, in VisitForStmt()