Home | History | Annotate | Download | only in Frontend

Lines Matching defs:OID

941   ObjCIvarDecl *OID = PID->getPropertyIvarDecl();
942 assert(IMD && OID && "Synthesized ivars must be attached to @implementation");
956 RewriteObjCMethodDecl(OID->getContainingInterface(),
962 // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1)
991 RewriteIvarOffsetComputation(OID, Getr);
995 Getr += "return " + getIvarAccessString(OID);
1015 RewriteObjCMethodDecl(OID->getContainingInterface(),
1022 RewriteIvarOffsetComputation(OID, Setr);
1036 Setr += getIvarAccessString(OID) + " = ";
1356 void RewriteModernObjC::RewriteImplementationDecl(Decl *OID) {
1357 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
1358 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID);
7252 const ObjCInterfaceDecl *OID) {
7253 if (OID->hasAttr<ObjCExceptionAttr>())
7255 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())