Lines Matching refs:FS
120 void RSASTReplace::VisitForStmt(clang::ForStmt *FS) {
121 if (matchesStmt(FS->getInit())) {
122 FS->setInit(mNewStmt);
123 } else if (matchesExpr(FS->getCond())) {
124 FS->setCond(mNewExpr);
125 } else if (matchesExpr(FS->getInc())) {
126 FS->setInc(mNewExpr);
127 } else if (matchesStmt(FS->getBody())) {
128 FS->setBody(mNewStmt);
130 VisitStmt(FS);