Lines Matching defs:Getter
2050 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
2053 if (!Getter)
2054 Getter = LookupMethodInQualifiedType(Sel, OPT, true);
2057 if (!Getter)
2058 Getter = IFace->lookupPrivateMethod(Sel);
2060 if (Getter) {
2062 if (SemaRef.DiagnoseUseOfDecl(Getter, MemberLoc))
2102 if (Getter || Setter) {
2105 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2109 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2231 ObjCMethodDecl *Getter = IFace->lookupClassMethod(GetterSel);
2234 if (!Getter)
2235 Getter = IFace->lookupPrivateClassMethod(GetterSel);
2237 if (Getter) {
2240 if (SemaRef.DiagnoseUseOfDecl(Getter, propertyNameLoc))
2258 if (Getter || Setter) {
2261 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2266 Getter, Setter, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty,
4201 if (ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter())
4202 SrcType = Getter->getReturnType();