Lines Matching refs:PropDecl
563 const ObjCPropertyDecl *PropDecl = PropImpl->getPropertyDecl(); in diagnoseMissingReleases() local
565 assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Copy || in diagnoseMissingReleases()
566 PropDecl->getSetterKind() == ObjCPropertyDecl::Retain); in diagnoseMissingReleases()
571 if (PropDecl->getSetterKind() == ObjCPropertyDecl::Retain) in diagnoseMissingReleases()
662 const ObjCPropertyDecl *PropDecl = findShadowedPropertyDecl(PropImpl); in diagnoseExtraRelease() local
663 if (PropDecl) { in diagnoseExtraRelease()
664 if (PropDecl->isReadOnly()) in diagnoseExtraRelease()
667 PropDecl = PropImpl->getPropertyDecl(); in diagnoseExtraRelease()
677 assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Weak || in diagnoseExtraRelease()
678 (PropDecl->getSetterKind() == ObjCPropertyDecl::Assign && in diagnoseExtraRelease()
679 !PropDecl->isReadOnly()) || in diagnoseExtraRelease()
693 if (PropDecl->getSetterKind() == ObjCPropertyDecl::Weak) in diagnoseExtraRelease()
806 const ObjCPropertyDecl *PropDecl = PropImpl->getPropertyDecl(); in findShadowedPropertyDecl() local
809 if (PropDecl->isReadOnly()) in findShadowedPropertyDecl()
812 auto *CatDecl = dyn_cast<ObjCCategoryDecl>(PropDecl->getDeclContext()); in findShadowedPropertyDecl()
818 IdentifierInfo *ID = PropDecl->getIdentifier(); in findShadowedPropertyDecl()
888 const ObjCPropertyDecl *PropDecl; in getDeallocReleaseRequirement() local
889 if (!isSynthesizedRetainableProperty(PropImpl, &IvarDecl, &PropDecl)) in getDeallocReleaseRequirement()
892 ObjCPropertyDecl::SetterKind SK = PropDecl->getSetterKind(); in getDeallocReleaseRequirement()
914 if (PropDecl->isReadOnly()) in getDeallocReleaseRequirement()