Home
last modified time | relevance | path

Searched refs:SetterMethod (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/Sema/
DSemaObjCProperty.cpp1764 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules() local
1773 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() local
1954 SetterMethod = CD->getInstanceMethod(property->getSetterName()); in ProcessPropertyDecl()
[all …]
DSemaDeclObjC.cpp2718 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local
2720 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
/external/clang/lib/StaticAnalyzer/Checkers/
DDirectIvarAssignment.cpp191 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local
194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD) in VisitBinaryOperator()
/external/clang/lib/ARCMigrate/
DObjCMT.cpp1199 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty() local
1201 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()