Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaObjCProperty.cpp1906 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules() local
1915 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()
1923 if (SetterMethod) { in AtomicPropertySetterGetterRules()
1924 Diag(SetterMethod->getLocation(), in AtomicPropertySetterGetterRules()
1941 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); in AtomicPropertySetterGetterRules()
1943 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) { in AtomicPropertySetterGetterRules()
1946 : SetterMethod->getLocation()); in AtomicPropertySetterGetterRules()
1949 << (SetterMethod != nullptr); in AtomicPropertySetterGetterRules()
2084 ObjCMethodDecl *GetterMethod, *SetterMethod; in ProcessPropertyDecl() local
2098 SetterMethod = CD->getInstanceMethod(property->getSetterName()); in ProcessPropertyDecl()
[all …]
DSemaDeclObjC.cpp3666 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local
3668 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.cpp1187 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty() local
1189 if (!SetterMethod) { in migrateProperty()
1210 SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty()
1215 if (SetterMethod) { in migrateProperty()
1219 if (SetterMethod->isDeprecated() || in migrateProperty()
1220 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch)) in migrateProperty()
1224 QualType SRT = SetterMethod->getReturnType(); in migrateProperty()
1227 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); in migrateProperty()
1232 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit, in migrateProperty()