Lines Matching refs:Getter

1819   ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);  in HandleExprPropertyRefExpr()  local
1822 if (!Getter) in HandleExprPropertyRefExpr()
1823 Getter = LookupMethodInQualifiedType(Sel, OPT, true); in HandleExprPropertyRefExpr()
1826 if (!Getter) in HandleExprPropertyRefExpr()
1827 Getter = IFace->lookupPrivateMethod(Sel); in HandleExprPropertyRefExpr()
1829 if (Getter) { in HandleExprPropertyRefExpr()
1831 if (DiagnoseUseOfDecl(Getter, MemberLoc)) in HandleExprPropertyRefExpr()
1870 if (Getter || Setter) { in HandleExprPropertyRefExpr()
1873 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1877 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1974 ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel); in ActOnClassPropertyRefExpr() local
1977 if (!Getter) in ActOnClassPropertyRefExpr()
1978 Getter = IFace->lookupPrivateClassMethod(Sel); in ActOnClassPropertyRefExpr()
1980 if (Getter) { in ActOnClassPropertyRefExpr()
1983 if (DiagnoseUseOfDecl(Getter, propertyNameLoc)) in ActOnClassPropertyRefExpr()
2006 if (Getter || Setter) { in ActOnClassPropertyRefExpr()
2009 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in ActOnClassPropertyRefExpr()
2014 Getter, Setter, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty, in ActOnClassPropertyRefExpr()
3783 if (ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter()) in CheckObjCBridgeRelatedCast() local
3784 SrcType = Getter->getReturnType(); in CheckObjCBridgeRelatedCast()