Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp2150 if (SetterMethod) { in AtomicPropertySetterGetterRules()
2174 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) { in AtomicPropertySetterGetterRules()
2336 SetterMethod = IsClassProperty ? in ProcessPropertyDecl()
2339 if (!SetterMethod) in ProcessPropertyDecl()
2430 if (!SetterMethod) { in ProcessPropertyDecl()
2437 SetterMethod = in ProcessPropertyDecl()
2479 CD->addDecl(SetterMethod); in ProcessPropertyDecl()
2481 SetterMethod->addAttr( in ProcessPropertyDecl()
2509 if (SetterMethod) in ProcessPropertyDecl()
2514 if (SetterMethod) in ProcessPropertyDecl()
[all …]
H A DSemaDeclObjC.cpp3996 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local
3998 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp190 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local
193 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD) in VisitBinaryOperator()
/freebsd-12.1/contrib/llvm/tools/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()