Home | History | Annotate | Download | only in Rewrite

Lines Matching defs:OID

939   ObjCIvarDecl *OID = PID->getPropertyIvarDecl();
940 assert(IMD && OID && "Synthesized ivars must be attached to @implementation");
954 RewriteObjCMethodDecl(OID->getContainingInterface(),
960 // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1)
990 RewriteIvarOffsetComputation(OID, Getr);
994 Getr += "return " + getIvarAccessString(OID);
1014 RewriteObjCMethodDecl(OID->getContainingInterface(),
1021 RewriteIvarOffsetComputation(OID, Setr);
1035 Setr += getIvarAccessString(OID) + " = ";
1331 void RewriteModernObjC::RewriteImplementationDecl(Decl *OID) {
1332 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
1333 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID);
7004 const ObjCInterfaceDecl *OID) {
7005 if (OID->hasAttr<ObjCExceptionAttr>())
7007 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())