Searched defs:SetterMethod (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp191 ObjCMethodDecl *SetterMethod = local
194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD)
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1764 ObjCMethodDecl *SetterMethod = nullptr; local
1773 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName());
1781 if (SetterMethod) {
1782 Diag(SetterMethod->getLocation(),
1799 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName());
1801 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) {
1804 : SetterMethod->getLocation());
1807 << (SetterMethod != nullptr);
1948 ObjCMethodDecl *GetterMethod, *SetterMethod; local
[all...]
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp1199 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); local
1201 if (!SetterMethod) {
1222 SetterMethod = D->getInstanceMethod(SetterSelector);
1227 if (SetterMethod) {
1231 if (SetterMethod->isDeprecated() ||
1232 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch))
1236 QualType SRT = SetterMethod->getReturnType();
1239 const ParmVarDecl *argDecl = *SetterMethod->param_begin();
1244 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit,
1258 rewriteToObjCProperty(Method, nullptr /*SetterMethod*/, *NSAPIOb
[all...]

Completed in 123 milliseconds