Home
last modified time | relevance | path

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

/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2158 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules()
2168 SetterMethod = Property->isClassProperty() ? in AtomicPropertySetterGetterRules()
2173 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules()
2174 SetterMethod = nullptr; in AtomicPropertySetterGetterRules()
2181 if (SetterMethod) { in AtomicPropertySetterGetterRules()
2182 Diag(SetterMethod->getLocation(), in AtomicPropertySetterGetterRules()
2198 SetterMethod = PIDecl->getSetterMethodDecl(); in AtomicPropertySetterGetterRules()
2201 if (SetterMethod && SetterMethod in AtomicPropertySetterGetterRules()
2160 ObjCMethodDecl *SetterMethod = nullptr; AtomicPropertySetterGetterRules() local
2358 ObjCMethodDecl *GetterMethod, *SetterMethod; ProcessPropertyDecl() local
[all...]
H A DSemaDeclObjC.cpp4113 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd()
4115 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
4120 if (ObjCMethodDecl *SetterMethod ActOnAtEnd() local
/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp191 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local
194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD) in VisitBinaryOperator()
/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp1175 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty()
1177 if (!SetterMethod) { in migrateProperty()
1198 SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty()
1203 if (SetterMethod) { in migrateProperty()
1207 if (SetterMethod->isDeprecated() || in migrateProperty()
1208 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch)) in migrateProperty()
1212 QualType SRT = SetterMethod->getReturnType(); in migrateProperty()
1215 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); in migrateProperty()
1220 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit, in migrateProperty()
1234 rewriteToObjCProperty(Method, nullptr /*SetterMethod*/, *NSAPIOb in migrateProperty()
1174 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); migrateProperty() local
[all...]