Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaObjCProperty.cpp1958 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules() local
1969 SetterMethod = Property->isClassProperty() ? in AtomicPropertySetterGetterRules()
1979 if (SetterMethod) { in AtomicPropertySetterGetterRules()
1980 Diag(SetterMethod->getLocation(), in AtomicPropertySetterGetterRules()
1999 SetterMethod = Property->isClassProperty() ? in AtomicPropertySetterGetterRules()
2003 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) { in AtomicPropertySetterGetterRules()
2006 : SetterMethod->getLocation()); in AtomicPropertySetterGetterRules()
2009 << (SetterMethod != nullptr); in AtomicPropertySetterGetterRules()
2145 ObjCMethodDecl *GetterMethod, *SetterMethod; in ProcessPropertyDecl() local
2165 SetterMethod = IsClassProperty ? in ProcessPropertyDecl()
[all …]
DSemaDeclObjC.cpp3815 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local
3817 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
/external/clang/lib/StaticAnalyzer/Checkers/
DDirectIvarAssignment.cpp190 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local
193 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()