Lines Matching refs:Prop
744 static const ObjCIvarDecl *findBackingIvar(const ObjCPropertyDecl *Prop) { in findBackingIvar() argument
745 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl(); in findBackingIvar()
756 if (!Prop->isReadOnly()) in findBackingIvar()
759 auto *Container = cast<ObjCContainerDecl>(Prop->getDeclContext()); in findBackingIvar()
775 Prop->getIdentifier(), Prop->getQueryKind()); in findBackingIvar()
776 if (ShadowingProp && ShadowingProp != Prop) { in findBackingIvar()
787 const ObjCPropertyDecl *Prop = nullptr; in createObjCPropertyGetter() local
798 Prop = Candidate; in createObjCPropertyGetter()
799 IVar = Prop->getPropertyIvarDecl(); in createObjCPropertyGetter()
806 Prop = MD->findPropertyDecl(); in createObjCPropertyGetter()
807 IVar = findBackingIvar(Prop); in createObjCPropertyGetter()
810 if (!IVar || !Prop) in createObjCPropertyGetter()
814 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in createObjCPropertyGetter()
826 if (I->getPropertyDecl() != Prop) in createObjCPropertyGetter()
839 Prop->getType().getNonReferenceType())) in createObjCPropertyGetter()