Lines Matching defs:IMD
266 ObjCImplementationDecl *IMD,
766 ObjCImplementationDecl *IMD,
1166 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
1168 assert((IMD || CID) && "Unknown ImplementationDecl");
1170 InsertText(IMD ? IMD->getBeginLoc() : CID->getBeginLoc(), "// ");
1172 for (auto *OMD : IMD ? IMD->instance_methods() : CID->instance_methods()) {
1185 for (auto *OMD : IMD ? IMD->class_methods() : CID->class_methods()) {
1197 for (auto *I : IMD ? IMD->property_impls() : CID->property_impls())
1198 RewritePropertyImplDecl(I, IMD, CID);
1200 InsertText(IMD ? IMD->getEndLoc() : CID->getEndLoc(), "// ");