Searched refs:SetterMethod (Results 1 - 4 of 4) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | DirectIvarAssignment.cpp | 191 ObjCMethodDecl *SetterMethod = local 194 if (SetterMethod && SetterMethod->getCanonicalDecl() == MD)
|
/external/clang/lib/Sema/ |
H A D | SemaObjCProperty.cpp | 1906 ObjCMethodDecl *SetterMethod = nullptr; local 1915 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); 1923 if (SetterMethod) { 1924 Diag(SetterMethod->getLocation(), 1941 SetterMethod = IMPDecl->getInstanceMethod(Property->getSetterName()); 1943 if ((GetterMethod && !SetterMethod) || (!GetterMethod && SetterMethod)) { 1946 : SetterMethod->getLocation()); 1949 << (SetterMethod != nullptr); 2084 ObjCMethodDecl *GetterMethod, *SetterMethod; local [all...] |
H A D | SemaDeclObjC.cpp | 3666 if (ObjCMethodDecl *SetterMethod 3668 SetterMethod->setPropertyAccessor(true);
|
/external/clang/lib/ARCMigrate/ |
H A D | ObjCMT.cpp | 1187 ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector); local 1189 if (!SetterMethod) { 1210 SetterMethod = D->getInstanceMethod(SetterSelector); 1215 if (SetterMethod) { 1219 if (SetterMethod->isDeprecated() || 1220 !AttributesMatch(Method, SetterMethod, AvailabilityArgsMatch)) 1224 QualType SRT = SetterMethod->getReturnType(); 1227 const ParmVarDecl *argDecl = *SetterMethod->param_begin(); 1232 rewriteToObjCProperty(Method, SetterMethod, *NSAPIObj, commit, 1246 rewriteToObjCProperty(Method, nullptr /*SetterMethod*/, *NSAPIOb [all...] |
Completed in 60 milliseconds