Home | History | Annotate | Download | only in Rewrite

Lines Matching refs:IMD

287                                  ObjCImplementationDecl *IMD,
781 ObjCImplementationDecl *IMD,
1219 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
1222 if (IMD) {
1223 InsertText(IMD->getLocStart(), "// ");
1224 if (IMD->getIvarLBraceLoc().isValid())
1225 InsertText(IMD->getIvarLBraceLoc(), "// ");
1227 I = IMD->ivar_begin(), E = IMD->ivar_end(); I != E; ++I) {
1232 if (IMD->getIvarRBraceLoc().isValid())
1233 InsertText(IMD->getIvarRBraceLoc(), "// ");
1239 I = IMD ? IMD->instmeth_begin() : CID->instmeth_begin(),
1240 E = IMD ? IMD->instmeth_end() : CID->instmeth_end();
1254 I = IMD ? IMD->classmeth_begin() : CID->classmeth_begin(),
1255 E = IMD ? IMD->classmeth_end() : CID->classmeth_end();
1268 I = IMD ? IMD->propimpl_begin() : CID->propimpl_begin(),
1269 E = IMD ? IMD->propimpl_end() : CID->propimpl_end();
1271 RewritePropertyImplDecl(*I, IMD, CID);
1274 InsertText(IMD ? IMD->getLocEnd() : CID->getLocEnd(), "// ");