Lines Matching refs:getterMethod
1442 if (ObjCMethodDecl *getterMethod = property->getGetterMethodDecl()) { in ActOnPropertyImplDecl() local
1443 getterMethod->createImplicitParams(Context, IDecl); in ActOnPropertyImplDecl()
1449 getterMethod->getSelector(), getterMethod->isInstanceMethod()); in ActOnPropertyImplDecl()
1451 OMD = RedeclarePropertyAccessor(Context, IC, getterMethod, AtLoc, in ActOnPropertyImplDecl()
1461 SynthesizedFunctionScope Scope(*this, getterMethod); in ActOnPropertyImplDecl()
1462 ImplicitParamDecl *SelfDecl = getterMethod->getSelfDecl(); in ActOnPropertyImplDecl()
1478 getterMethod->getReturnType(), in ActOnPropertyImplDecl()
1489 !getterMethod->hasAttr<NSReturnsNotRetainedAttr>()) { in ActOnPropertyImplDecl()
1490 Diag(getterMethod->getLocation(), in ActOnPropertyImplDecl()
1495 switch (getterMethod->getMethodFamily()) { in ActOnPropertyImplDecl()
1500 Diag(getterMethod->getLocation(), diag::err_arc_illegal_method_def) in ActOnPropertyImplDecl()
1501 << 1 << getterMethod->getSelector(); in ActOnPropertyImplDecl()