Lines Matching refs:Prop
745 static const ObjCIvarDecl *findBackingIvar(const ObjCPropertyDecl *Prop) { in findBackingIvar() argument
746 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl(); in findBackingIvar()
757 if (!Prop->isReadOnly()) in findBackingIvar()
760 auto *Container = cast<ObjCContainerDecl>(Prop->getDeclContext()); in findBackingIvar()
776 Prop->getIdentifier(), Prop->getQueryKind()); in findBackingIvar()
777 if (ShadowingProp && ShadowingProp != Prop) { in findBackingIvar()
788 const ObjCPropertyDecl *Prop = nullptr; in createObjCPropertyGetter() local
799 Prop = Candidate; in createObjCPropertyGetter()
800 IVar = Prop->getPropertyIvarDecl(); in createObjCPropertyGetter()
807 Prop = MD->findPropertyDecl(); in createObjCPropertyGetter()
808 IVar = findBackingIvar(Prop); in createObjCPropertyGetter()
811 if (!IVar || !Prop) in createObjCPropertyGetter()
815 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) in createObjCPropertyGetter()
827 if (I->getPropertyDecl() != Prop) in createObjCPropertyGetter()
840 Prop->getType().getNonReferenceType())) in createObjCPropertyGetter()