Lines Matching defs:Getter
2038 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
2041 if (!Getter)
2042 Getter = LookupMethodInQualifiedType(Sel, OPT, true);
2045 if (!Getter)
2046 Getter = IFace->lookupPrivateMethod(Sel);
2048 if (Getter) {
2050 if (SemaRef.DiagnoseUseOfDecl(Getter, MemberLoc))
2090 if (Getter || Setter) {
2093 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2097 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2219 ObjCMethodDecl *Getter = IFace->lookupClassMethod(GetterSel);
2222 if (!Getter)
2223 Getter = IFace->lookupPrivateClassMethod(GetterSel);
2225 if (Getter) {
2228 if (SemaRef.DiagnoseUseOfDecl(Getter, propertyNameLoc))
2246 if (Getter || Setter) {
2249 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2254 Getter, Setter, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty,
4190 if (ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter())
4191 SrcType = Getter->getReturnType();