Home | History | Annotate | Download | only in Sema

Lines Matching defs:Setter

425     // Also must look for a getter or setter name which uses property syntax.
1527 // will look for the matching setter, in case it is needed.
1532 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
1533 if (!Setter) {
1536 Setter = IFace->lookupPrivateMethod(SetterSel, false);
1539 if (Setter && S.DiagnoseUseOfDecl(Setter, MemberLoc))
1542 if (Getter || Setter) {
1544 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue,