Home | History | Annotate | Download | only in Rewrite

Lines Matching defs:OID

752 static std::string getIvarAccessString(ObjCIvarDecl *OID) {
753 const ObjCInterfaceDecl *ClassDecl = OID->getContainingInterface();
758 S += OID->getName();
781 ObjCIvarDecl *OID = PID->getPropertyIvarDecl();
783 if (!OID)
797 RewriteObjCMethodDecl(OID->getContainingInterface(),
803 // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1)
832 RewriteIvarOffsetComputation(OID, Getr);
836 Getr += "return " + getIvarAccessString(OID);
855 RewriteObjCMethodDecl(OID->getContainingInterface(),
862 RewriteIvarOffsetComputation(OID, Setr);
876 Setr += getIvarAccessString(OID) + " = ";
1171 void RewriteObjC::RewriteImplementationDecl(Decl *OID) {
1172 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
1173 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID);