Searched refs:SetterMethod (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/clang/lib/Sema/ |
D | SemaObjCProperty.cpp | 2191 ObjCMethodDecl *SetterMethod = nullptr; in AtomicPropertySetterGetterRules() local 2201 SetterMethod = Property->isClassProperty() ? in AtomicPropertySetterGetterRules() 2206 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules() 2207 SetterMethod = nullptr; in AtomicPropertySetterGetterRules() 2214 if (SetterMethod) { in AtomicPropertySetterGetterRules() 2215 Diag(SetterMethod->getLocation(), in AtomicPropertySetterGetterRules() 2231 SetterMethod = PIDecl->getSetterMethodDecl(); in AtomicPropertySetterGetterRules() 2234 if (SetterMethod && SetterMethod->isSynthesizedAccessorStub()) in AtomicPropertySetterGetterRules() 2235 SetterMethod = nullptr; in AtomicPropertySetterGetterRules() 2236 if ((bool)GetterMethod ^ (bool)SetterMethod) { in AtomicPropertySetterGetterRules() [all …]
|
D | SemaDeclObjC.cpp | 4099 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local 4101 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
|
/external/clang/lib/Sema/ |
D | SemaObjCProperty.cpp | 1958 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 …]
|
D | SemaDeclObjC.cpp | 3815 if (ObjCMethodDecl *SetterMethod in ActOnAtEnd() local 3817 SetterMethod->setPropertyAccessor(true); in ActOnAtEnd()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | DirectIvarAssignment.cpp | 191 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local 194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD) in VisitBinaryOperator()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DirectIvarAssignment.cpp | 190 ObjCMethodDecl *SetterMethod = in VisitBinaryOperator() local 193 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD) in VisitBinaryOperator()
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 1187 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()
|
/external/llvm-project/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 1180 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty() local 1182 if (!SetterMethod) { in migrateProperty() 1203 SetterMethod = D->getInstanceMethod(SetterSelector); in migrateProperty() 1208 if (SetterMethod) { in migrateProperty() 1212 if (SetterMethod->isDeprecated() || in migrateProperty() 1213 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch)) in migrateProperty() 1217 QualType SRT = SetterMethod->getReturnType(); in migrateProperty() 1220 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); in migrateProperty() 1225 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit, in migrateProperty()
|