Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaObjCProperty.cpp1757 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules() local
1766 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()
1774 if (SetterMethod) { in AtomicPropertySetterGetterRules()
1775 Diag(SetterMethod->getLocation(), in AtomicPropertySetterGetterRules()
1792 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()
1794 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) { in AtomicPropertySetterGetterRules()
1797 : SetterMethod->getLocation()); in AtomicPropertySetterGetterRules()
1800 << (SetterMethod != nullptr); in AtomicPropertySetterGetterRules()
1908 ObjCMethodDecl *GetterMethod, *SetterMethod; in ProcessPropertyDecl() local
1914 SetterMethod = CD->getInstanceMethod(property->getSetterName()); in ProcessPropertyDecl()
[all …]
DSemaDeclObjC.cpp2662 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local
2664 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.cpp1056 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty() local
1058 if (!SetterMethod) { in migrateProperty()
1079 SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty()
1084 if (SetterMethod) { in migrateProperty()
1088 if (SetterMethod->isDeprecated() || in migrateProperty()
1089 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch)) in migrateProperty()
1093 QualType SRT = SetterMethod->getReturnType(); in migrateProperty()
1096 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); in migrateProperty()
1101 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit, in migrateProperty()