Lines Matching refs:OID
756 static std::string getIvarAccessString(ObjCIvarDecl *OID) { in getIvarAccessString() argument
757 const ObjCInterfaceDecl *ClassDecl = OID->getContainingInterface(); in getIvarAccessString()
762 S += OID->getName(); in getIvarAccessString()
785 ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); in RewritePropertyImplDecl() local
787 if (!OID) in RewritePropertyImplDecl()
801 RewriteObjCMethodDecl(OID->getContainingInterface(), in RewritePropertyImplDecl()
837 RewriteIvarOffsetComputation(OID, Getr); in RewritePropertyImplDecl()
841 Getr += "return " + getIvarAccessString(OID); in RewritePropertyImplDecl()
860 RewriteObjCMethodDecl(OID->getContainingInterface(), in RewritePropertyImplDecl()
867 RewriteIvarOffsetComputation(OID, Setr); in RewritePropertyImplDecl()
881 Setr += getIvarAccessString(OID) + " = "; in RewritePropertyImplDecl()
1162 void RewriteObjC::RewriteImplementationDecl(Decl *OID) { in RewriteImplementationDecl() argument
1163 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID); in RewriteImplementationDecl()
1164 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID); in RewriteImplementationDecl()