Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaObjCProperty.cpp2179 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules() local
2189 SetterMethod = Property->isClassProperty() ? in AtomicPropertySetterGetterRules()
2194 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules()
2195 SetterMethod = nullptr; in AtomicPropertySetterGetterRules()
2202 if (SetterMethod) { in AtomicPropertySetterGetterRules()
2203 Diag(SetterMethod->getLocation(), in AtomicPropertySetterGetterRules()
2219 SetterMethod = PIDecl->getSetterMethodDecl(); in AtomicPropertySetterGetterRules()
2222 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules()
2223 SetterMethod = nullptr; in AtomicPropertySetterGetterRules()
2224 if ((bool)GetterMethod ^ (bool)SetterMethod) { in AtomicPropertySetterGetterRules()
[all …]
H A DSemaDeclObjC.cpp4115 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local
4117 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp191 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local
194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD) in VisitBinaryOperator()
/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/
H A DObjCMT.cpp1177 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty() local
1179 if (!SetterMethod) { in migrateProperty()
1200 SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty()
1205 if (SetterMethod) { in migrateProperty()
1209 if (SetterMethod->isDeprecated() || in migrateProperty()
1210 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch)) in migrateProperty()
1214 QualType SRT = SetterMethod->getReturnType(); in migrateProperty()
1217 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); in migrateProperty()
1222 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit, in migrateProperty()