Searched refs:SetterMethod (Results 1 – 4 of 4) sorted by relevance
1764 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules() local1773 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()1781 if (SetterMethod) { in AtomicPropertySetterGetterRules()1782 Diag(SetterMethod->getLocation(), in AtomicPropertySetterGetterRules()1799 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()1801 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) { in AtomicPropertySetterGetterRules()1804 : SetterMethod->getLocation()); in AtomicPropertySetterGetterRules()1807 << (SetterMethod != nullptr); in AtomicPropertySetterGetterRules()1948 ObjCMethodDecl *GetterMethod, *SetterMethod; in ProcessPropertyDecl() local1954 SetterMethod = CD->getInstanceMethod(property->getSetterName()); in ProcessPropertyDecl()[all …]
2718 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local2720 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
191 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD) in VisitBinaryOperator()
1199 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty() local1201 if (!SetterMethod) { in migrateProperty()1222 SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty()1227 if (SetterMethod) { in migrateProperty()1231 if (SetterMethod->isDeprecated() || in migrateProperty()1232 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch)) in migrateProperty()1236 QualType SRT = SetterMethod->getReturnType(); in migrateProperty()1239 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); in migrateProperty()1244 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit, in migrateProperty()