Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/
DCheckObjCDealloc.cpp570 const ObjCPropertyDecl *PropDecl = PropImpl->getPropertyDecl(); in diagnoseMissingReleases() local
572 assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Copy || in diagnoseMissingReleases()
573 PropDecl->getSetterKind() == ObjCPropertyDecl::Retain); in diagnoseMissingReleases()
578 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 …]
/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp61 ObjCPropertyDecl *PropDecl = P->first; in VisitObjCMessageExpr() local
62 if (PropDecl->getSetterName() == ME->getSelector()) { in VisitObjCMessageExpr()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp1859 for (auto *PropDecl : PDecl->properties()) { in DiagnoseUnimplementedProperties() local
1860 if ((*LazyMap)[std::make_pair(PropDecl->getIdentifier(), in DiagnoseUnimplementedProperties()
1861 PropDecl->isClassProperty())]) in DiagnoseUnimplementedProperties()
1863 PropMap[std::make_pair(PropDecl->getIdentifier(), in DiagnoseUnimplementedProperties()
1864 PropDecl->isClassProperty())] = PropDecl; in DiagnoseUnimplementedProperties()
/external/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp687 if (const ObjCPropertyDecl *PropDecl = getAccessedProperty()) { in getExtraInvalidatedValues() local
688 if (const ObjCIvarDecl *PropIvar = PropDecl->getPropertyIvarDecl()) { in getExtraInvalidatedValues()
/external/clang/lib/Frontend/Rewrite/
DRewriteModernObjC.cpp6384 ObjCPropertyDecl *PropDecl = Properties[i]; in Write_prop_list_t_initializer() local
6389 Result += PropDecl->getName(); Result += "\","; in Write_prop_list_t_initializer()
6391 Context->getObjCEncodingForPropertyDecl(PropDecl, Container, PropertyTypeString); in Write_prop_list_t_initializer()