Lines Matching refs:PropDecl

571     const ObjCPropertyDecl *PropDecl = PropImpl->getPropertyDecl();  in diagnoseMissingReleases()  local
573 assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Copy || in diagnoseMissingReleases()
574 PropDecl->getSetterKind() == ObjCPropertyDecl::Retain); in diagnoseMissingReleases()
579 if (PropDecl->getSetterKind() == ObjCPropertyDecl::Retain) in diagnoseMissingReleases()
670 const ObjCPropertyDecl *PropDecl = findShadowedPropertyDecl(PropImpl); in diagnoseExtraRelease() local
671 if (PropDecl) { in diagnoseExtraRelease()
672 if (PropDecl->isReadOnly()) in diagnoseExtraRelease()
675 PropDecl = PropImpl->getPropertyDecl(); in diagnoseExtraRelease()
685 assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Weak || in diagnoseExtraRelease()
686 (PropDecl->getSetterKind() == ObjCPropertyDecl::Assign && in diagnoseExtraRelease()
687 !PropDecl->isReadOnly()) || in diagnoseExtraRelease()
701 if (PropDecl->getSetterKind() == ObjCPropertyDecl::Weak) in diagnoseExtraRelease()
797 const ObjCPropertyDecl *PropDecl = PropImpl->getPropertyDecl(); in findShadowedPropertyDecl() local
800 if (PropDecl->isReadOnly()) in findShadowedPropertyDecl()
803 auto *CatDecl = dyn_cast<ObjCCategoryDecl>(PropDecl->getDeclContext()); in findShadowedPropertyDecl()
809 IdentifierInfo *ID = PropDecl->getIdentifier(); in findShadowedPropertyDecl()
879 const ObjCPropertyDecl *PropDecl; in getDeallocReleaseRequirement() local
880 if (!isSynthesizedRetainableProperty(PropImpl, &IvarDecl, &PropDecl)) in getDeallocReleaseRequirement()
883 ObjCPropertyDecl::SetterKind SK = PropDecl->getSetterKind(); in getDeallocReleaseRequirement()
905 if (PropDecl->isReadOnly()) in getDeallocReleaseRequirement()