Home | History | Annotate | Download | only in Sema

Lines Matching full:getter

1819   ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
1822 if (!Getter)
1823 Getter = LookupMethodInQualifiedType(Sel, OPT, true);
1826 if (!Getter)
1827 Getter = IFace->lookupPrivateMethod(Sel);
1829 if (Getter) {
1831 if (DiagnoseUseOfDecl(Getter, MemberLoc))
1834 // If we found a getter then this may be a valid dot-reference, we
1870 if (Getter || Setter) {
1873 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
1877 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
1974 ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel);
1977 if (!Getter)
1978 Getter = IFace->lookupPrivateClassMethod(Sel);
1980 if (Getter) {
1983 if (DiagnoseUseOfDecl(Getter, propertyNameLoc))
2006 if (Getter || Setter) {
2009 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2014 Getter, Setter, Context.PseudoObjectTy, VK_LValue, OK_ObjCProperty,
3783 if (ObjCMethodDecl *Getter = PRE->getImplicitPropertyGetter())
3784 SrcType = Getter->getReturnType();