Home | History | Annotate | Download | only in Sema

Lines Matching defs:Getter

402     // Also must look for a getter or setter name which uses property syntax.
1232 if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl())
1233 T = getMessageSendResultType(BaseType, Getter, false, false);
1288 // Also must look for a getter name which uses property syntax.
1291 ObjCMethodDecl *Getter;
1292 if ((Getter = IFace->lookupClassMethod(Sel))) {
1294 if (DiagnoseUseOfDecl(Getter, MemberLoc))
1297 Getter = IFace->lookupPrivateMethod(Sel, false);
1298 // If we found a getter then this may be a valid dot-reference, we
1316 if (Getter || Setter) {
1320 if (Getter) {
1321 PType = getMessageSendResultType(QualType(OT, 0), Getter, true,
1332 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter,