Home | History | Annotate | Download | only in Sema

Lines Matching defs:Setter

439     // Also must look for a getter or setter name which uses property syntax.
1592 // will look for the matching setter, in case it is needed.
1597 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
1598 if (!Setter) {
1601 Setter = IFace->lookupPrivateMethod(SetterSel, false);
1604 if (Setter && S.DiagnoseUseOfDecl(Setter, MemberLoc))
1607 if (Getter || Setter) {
1609 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue,