Home | History | Annotate | Download | only in Frontend

Lines Matching defs:OID

765 static std::string getIvarAccessString(ObjCIvarDecl *OID) {
766 const ObjCInterfaceDecl *ClassDecl = OID->getContainingInterface();
771 S += OID->getName();
794 ObjCIvarDecl *OID = PID->getPropertyIvarDecl();
796 if (!OID)
810 RewriteObjCMethodDecl(OID->getContainingInterface(),
816 // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1)
846 RewriteIvarOffsetComputation(OID, Getr);
850 Getr += "return " + getIvarAccessString(OID);
869 RewriteObjCMethodDecl(OID->getContainingInterface(),
876 RewriteIvarOffsetComputation(OID, Setr);
890 Setr += getIvarAccessString(OID) + " = ";
1171 void RewriteObjC::RewriteImplementationDecl(Decl *OID) {
1172 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
1173 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID);