Lines Matching refs:FS
108 void RSASTReplace::VisitForStmt(clang::ForStmt *FS) {
109 if (matchesStmt(FS->getInit())) {
110 FS->setInit(mNewStmt);
111 } else if (matchesExpr(FS->getCond())) {
112 FS->setCond(mNewExpr);
113 } else if (matchesExpr(FS->getInc())) {
114 FS->setInc(mNewExpr);
115 } else if (matchesStmt(FS->getBody())) {
116 FS->setBody(mNewStmt);
118 VisitStmt(FS);