Home | History | Annotate | Download | only in Frontend

Lines Matching defs:OID

758 static std::string getIvarAccessString(ObjCIvarDecl *OID) {
759 const ObjCInterfaceDecl *ClassDecl = OID->getContainingInterface();
764 S += OID->getName();
787 ObjCIvarDecl *OID = PID->getPropertyIvarDecl();
789 if (!OID)
803 RewriteObjCMethodDecl(OID->getContainingInterface(),
809 // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1)
838 RewriteIvarOffsetComputation(OID, Getr);
842 Getr += "return " + getIvarAccessString(OID);
861 RewriteObjCMethodDecl(OID->getContainingInterface(),
868 RewriteIvarOffsetComputation(OID, Setr);
882 Setr += getIvarAccessString(OID) + " = ";
1176 void RewriteObjC::RewriteImplementationDecl(Decl *OID) {
1177 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
1178 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID);