Home
last modified time | relevance | path

Searched refs:PropDecl (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp571 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()
[all …]
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp60 ObjCPropertyDecl *PropDecl = P->first; in VisitObjCMessageExpr() local
61 if (PropDecl->getSetterName() == ME->getSelector()) { in VisitObjCMessageExpr()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp2063 for (auto *PropDecl : PDecl->properties()) { in DiagnoseUnimplementedProperties() local
2064 if ((*LazyMap)[std::make_pair(PropDecl->getIdentifier(), in DiagnoseUnimplementedProperties()
2065 PropDecl->isClassProperty())]) in DiagnoseUnimplementedProperties()
2067 PropMap[std::make_pair(PropDecl->getIdentifier(), in DiagnoseUnimplementedProperties()
2068 PropDecl->isClassProperty())] = PropDecl; in DiagnoseUnimplementedProperties()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp985 if (const ObjCPropertyDecl *PropDecl = getAccessedProperty()) { in getExtraInvalidatedValues() local
986 if (const ObjCIvarDecl *PropIvar = PropDecl->getPropertyIvarDecl()) { in getExtraInvalidatedValues()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6368 ObjCPropertyDecl *PropDecl = Properties[i]; in Write_prop_list_t_initializer() local
6373 Result += PropDecl->getName(); Result += "\","; in Write_prop_list_t_initializer()
6375 Context->getObjCEncodingForPropertyDecl(PropDecl, Container); in Write_prop_list_t_initializer()