Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2160 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules() local
2170 SetterMethod = Property->isClassProperty() ? in AtomicPropertySetterGetterRules()
2175 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules()
2176 SetterMethod = nullptr; in AtomicPropertySetterGetterRules()
2183 if (SetterMethod) { in AtomicPropertySetterGetterRules()
2184 Diag(SetterMethod->getLocation(), in AtomicPropertySetterGetterRules()
2200 SetterMethod = PIDecl->getSetterMethodDecl(); in AtomicPropertySetterGetterRules()
2203 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules()
2204 SetterMethod = nullptr; in AtomicPropertySetterGetterRules()
2205 if ((bool)GetterMethod ^ (bool)SetterMethod) { in AtomicPropertySetterGetterRules()
[all …]
H A DSemaDeclObjC.cpp4120 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local
4122 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp191 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local
194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD) in VisitBinaryOperator()
/src/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp1174 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty() local
1176 if (!SetterMethod) { in migrateProperty()
1197 SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty()
1202 if (SetterMethod) { in migrateProperty()
1206 if (SetterMethod->isDeprecated() || in migrateProperty()
1207 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch)) in migrateProperty()
1211 QualType SRT = SetterMethod->getReturnType(); in migrateProperty()
1214 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); in migrateProperty()
1219 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit, in migrateProperty()