Lines Matching refs:Getter

1572   ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);  in HandleExprPropertyRefExpr()  local
1575 if (!Getter) in HandleExprPropertyRefExpr()
1576 Getter = LookupMethodInQualifiedType(Sel, OPT, true); in HandleExprPropertyRefExpr()
1579 if (!Getter) in HandleExprPropertyRefExpr()
1580 Getter = IFace->lookupPrivateMethod(Sel); in HandleExprPropertyRefExpr()
1582 if (Getter) { in HandleExprPropertyRefExpr()
1584 if (DiagnoseUseOfDecl(Getter, MemberLoc)) in HandleExprPropertyRefExpr()
1623 if (Getter || Setter) { in HandleExprPropertyRefExpr()
1626 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1630 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1730 ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel); in ActOnClassPropertyRefExpr() local
1733 if (!Getter) in ActOnClassPropertyRefExpr()
1734 Getter = IFace->lookupPrivateClassMethod(Sel); in ActOnClassPropertyRefExpr()
1736 if (Getter) { in ActOnClassPropertyRefExpr()
1739 if (DiagnoseUseOfDecl(Getter, propertyNameLoc)) in ActOnClassPropertyRefExpr()
1762 if (Getter || Setter) { in ActOnClassPropertyRefExpr()
1765 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in ActOnClassPropertyRefExpr()
1770 Getter, Setter, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty, in ActOnClassPropertyRefExpr()
3532 if (ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter()) in CheckObjCBridgeRelatedCast() local
3533 SrcType = Getter->getReturnType(); in CheckObjCBridgeRelatedCast()