Lines Matching full:getter
1398 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
1401 if (!Getter)
1402 Getter = LookupMethodInQualifiedType(Sel, OPT, true);
1405 if (!Getter)
1406 Getter = IFace->lookupPrivateMethod(Sel);
1409 if (!Getter)
1410 Getter = IFace->getCategoryInstanceMethod(Sel);
1411 if (Getter) {
1413 if (DiagnoseUseOfDecl(Getter, MemberLoc))
1416 // If we found a getter then this may be a valid dot-reference, we
1439 if (Getter || Setter) {
1441 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter,
1447 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter,
1544 ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel);
1547 if (!Getter)
1551 Getter = ImpDecl->getClassMethod(Sel);
1553 if (Getter) {
1556 if (DiagnoseUseOfDecl(Getter, propertyNameLoc))
1581 if (Getter || Setter) {
1583 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter,
1590 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter,