Lines Matching refs:PropDecl

564     const ObjCPropertyDecl *PropDecl = PropImpl->getPropertyDecl();  in diagnoseMissingReleases()  local
566 assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Copy || in diagnoseMissingReleases()
567 PropDecl->getSetterKind() == ObjCPropertyDecl::Retain); in diagnoseMissingReleases()
572 if (PropDecl->getSetterKind() == ObjCPropertyDecl::Retain) in diagnoseMissingReleases()
664 const ObjCPropertyDecl *PropDecl = findShadowedPropertyDecl(PropImpl); in diagnoseExtraRelease() local
665 if (PropDecl) { in diagnoseExtraRelease()
666 if (PropDecl->isReadOnly()) in diagnoseExtraRelease()
669 PropDecl = PropImpl->getPropertyDecl(); in diagnoseExtraRelease()
679 assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Weak || in diagnoseExtraRelease()
680 (PropDecl->getSetterKind() == ObjCPropertyDecl::Assign && in diagnoseExtraRelease()
681 !PropDecl->isReadOnly()) || in diagnoseExtraRelease()
695 if (PropDecl->getSetterKind() == ObjCPropertyDecl::Weak) in diagnoseExtraRelease()
808 const ObjCPropertyDecl *PropDecl = PropImpl->getPropertyDecl(); in findShadowedPropertyDecl() local
811 if (PropDecl->isReadOnly()) in findShadowedPropertyDecl()
814 auto *CatDecl = dyn_cast<ObjCCategoryDecl>(PropDecl->getDeclContext()); in findShadowedPropertyDecl()
820 IdentifierInfo *ID = PropDecl->getIdentifier(); in findShadowedPropertyDecl()
890 const ObjCPropertyDecl *PropDecl; in getDeallocReleaseRequirement() local
891 if (!isSynthesizedRetainableProperty(PropImpl, &IvarDecl, &PropDecl)) in getDeallocReleaseRequirement()
894 ObjCPropertyDecl::SetterKind SK = PropDecl->getSetterKind(); in getDeallocReleaseRequirement()
916 if (PropDecl->isReadOnly()) in getDeallocReleaseRequirement()