Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaObjCProperty.cpp1761 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules() local
1770 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()
1778 if (SetterMethod) { in AtomicPropertySetterGetterRules()
1779 Diag(SetterMethod->getLocation(), in AtomicPropertySetterGetterRules()
1796 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()
1798 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) { in AtomicPropertySetterGetterRules()
1801 : SetterMethod->getLocation()); in AtomicPropertySetterGetterRules()
1804 << (SetterMethod != nullptr); in AtomicPropertySetterGetterRules()
1912 ObjCMethodDecl *GetterMethod, *SetterMethod; in ProcessPropertyDecl() local
1918 SetterMethod = CD->getInstanceMethod(property->getSetterName()); in ProcessPropertyDecl()
[all …]
H A DSemaDeclObjC.cpp2705 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local
2707 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp191 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local
194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD) in VisitBinaryOperator()
/minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/
H A DObjCMT.cpp1181 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty() local
1183 if (!SetterMethod) { in migrateProperty()
1204 SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty()
1209 if (SetterMethod) { in migrateProperty()
1213 if (SetterMethod->isDeprecated() || in migrateProperty()
1214 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch)) in migrateProperty()
1218 QualType SRT = SetterMethod->getReturnType(); in migrateProperty()
1221 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); in migrateProperty()
1226 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit, in migrateProperty()