Home | History | Annotate | Download | only in Rewrite

Lines Matching refs:DS

495     bool IsDeclStmtInForeachHeader(DeclStmt *DS);
1720 if (DeclStmt *DS = dyn_cast<DeclStmt>(S->getElement())) {
1722 NamedDecl* D = cast<NamedDecl>(DS->getSingleDecl());
5530 bool RewriteModernObjC::IsDeclStmtInForeachHeader(DeclStmt *DS) {
5533 return CS->getElement() == DS;
5685 if (DeclStmt *DS = dyn_cast<DeclStmt>(S)) {
5695 if (Stmts.empty() || !IsDeclStmtInForeachHeader(DS))
5696 RewriteObjCQualifiedInterfaceTypes(*DS->decl_begin());
5699 for (DeclStmt::decl_iterator DI = DS->decl_begin(), DE = DS->decl_end();
5713 RewriteByRefVar(VD, (DI == DS->decl_begin()), ((DI+1) == DE));