Home | History | Annotate | Download | only in slang

Lines Matching refs:FS

115 void RSASTReplace::VisitForStmt(clang::ForStmt *FS) {
116 if (matchesStmt(FS->getInit())) {
117 FS->setInit(mNewStmt);
118 } else if (matchesExpr(FS->getCond())) {
119 FS->setCond(mNewExpr);
120 } else if (matchesExpr(FS->getInc())) {
121 FS->setInc(mNewExpr);
122 } else if (matchesStmt(FS->getBody())) {
123 FS->setBody(mNewStmt);
125 VisitStmt(FS);