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