Home | History | Annotate | Download | only in Core

Lines Matching defs:FS

1363       const ForStmt *FS = cast<ForStmt>(Term);
1364 if (isContainedByStmt(PM, FS->getInc(), S))
1366 LoopBody = FS->getBody();
1495 if (const ForStmt *FS = dyn_cast<ForStmt>(Loop))
1496 CS = dyn_cast<CompoundStmt>(FS->getBody());
1614 if (const ObjCForCollectionStmt *FS =
1616 return FS->getElement();
1779 if (const ForStmt *FS = dyn_cast<ForStmt>(Loop))
1780 Body = FS->getBody();
1946 if (const ForStmt *FS = dyn_cast<ForStmt>(FL))
1947 return FS->getInc() == S || FS->getInit() == S;
2464 const ObjCForCollectionStmt *FS =
2466 if (FS && FS->getCollection()->IgnoreParens() == s2Start &&
2467 s2End == FS->getElement()) {