Lines Matching refs:getterMethod
1433 if (ObjCMethodDecl *getterMethod = property->getGetterMethodDecl()) { in ActOnPropertyImplDecl() local
1434 getterMethod->createImplicitParams(Context, IDecl); in ActOnPropertyImplDecl()
1440 getterMethod->getSelector(), getterMethod->isInstanceMethod()); in ActOnPropertyImplDecl()
1442 OMD = RedeclarePropertyAccessor(Context, IC, getterMethod, AtLoc, in ActOnPropertyImplDecl()
1452 SynthesizedFunctionScope Scope(*this, getterMethod); in ActOnPropertyImplDecl()
1453 ImplicitParamDecl *SelfDecl = getterMethod->getSelfDecl(); in ActOnPropertyImplDecl()
1469 getterMethod->getReturnType()), in ActOnPropertyImplDecl()
1479 !getterMethod->hasAttr<NSReturnsNotRetainedAttr>()) { in ActOnPropertyImplDecl()
1480 Diag(getterMethod->getLocation(), in ActOnPropertyImplDecl()
1485 switch (getterMethod->getMethodFamily()) { in ActOnPropertyImplDecl()
1490 Diag(getterMethod->getLocation(), diag::err_arc_illegal_method_def) in ActOnPropertyImplDecl()
1491 << 1 << getterMethod->getSelector(); in ActOnPropertyImplDecl()