Home | History | Annotate | Download | only in Rewrite

Lines Matching defs:CatDecl

983 void RewriteModernObjC::RewriteCategoryDecl(ObjCCategoryDecl *CatDecl) {
984 SourceLocation LocStart = CatDecl->getLocStart();
988 if (CatDecl->getIvarLBraceLoc().isValid())
989 InsertText(CatDecl->getIvarLBraceLoc(), "// ");
991 I = CatDecl->ivar_begin(), E = CatDecl->ivar_end(); I != E; ++I) {
996 if (CatDecl->getIvarRBraceLoc().isValid())
997 InsertText(CatDecl->getIvarRBraceLoc(), "// ");
999 for (ObjCCategoryDecl::prop_iterator I = CatDecl->prop_begin(),
1000 E = CatDecl->prop_end(); I != E; ++I)
1004 I = CatDecl->instmeth_begin(), E = CatDecl->instmeth_end();
1008 I = CatDecl->classmeth_begin(), E = CatDecl->classmeth_end();
1013 ReplaceText(CatDecl->getAtEndRange().getBegin(),
6316 ObjCCategoryDecl *CatDecl,
6322 StringRef CatName = CatDecl->getName();
7104 ObjCCategoryDecl *CatDecl= IDecl->getCategoryDecl();
7109 Result += CatDecl->getName();