Lines Matching refs:getterMethod
1434 if (ObjCMethodDecl *getterMethod = property->getGetterMethodDecl()) { in ActOnPropertyImplDecl() local
1435 getterMethod->createImplicitParams(Context, IDecl); in ActOnPropertyImplDecl()
1441 getterMethod->getSelector(), getterMethod->isInstanceMethod()); in ActOnPropertyImplDecl()
1443 OMD = RedeclarePropertyAccessor(Context, IC, getterMethod, AtLoc, in ActOnPropertyImplDecl()
1453 SynthesizedFunctionScope Scope(*this, getterMethod); in ActOnPropertyImplDecl()
1454 ImplicitParamDecl *SelfDecl = getterMethod->getSelfDecl(); in ActOnPropertyImplDecl()
1470 getterMethod->getReturnType()), in ActOnPropertyImplDecl()
1480 !getterMethod->hasAttr<NSReturnsNotRetainedAttr>()) { in ActOnPropertyImplDecl()
1481 Diag(getterMethod->getLocation(), in ActOnPropertyImplDecl()
1486 switch (getterMethod->getMethodFamily()) { in ActOnPropertyImplDecl()
1491 Diag(getterMethod->getLocation(), diag::err_arc_illegal_method_def) in ActOnPropertyImplDecl()
1492 << 1 << getterMethod->getSelector(); in ActOnPropertyImplDecl()