Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp564 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()
663 const ObjCPropertyDecl *PropDecl = findShadowedPropertyDecl(PropImpl); in diagnoseExtraRelease() local
664 if (PropDecl) { in diagnoseExtraRelease()
665 if (PropDecl->isReadOnly()) in diagnoseExtraRelease()
668 PropDecl = PropImpl->getPropertyDecl(); in diagnoseExtraRelease()
678 assert(PropDecl->getSetterKind() == ObjCPropertyDecl::Weak || in diagnoseExtraRelease()
679 (PropDecl->getSetterKind() == ObjCPropertyDecl::Assign && in diagnoseExtraRelease()
[all …]
/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp60 ObjCPropertyDecl *PropDecl = P->first; in VisitObjCMessageExpr() local
61 if (PropDecl->getSetterName() == ME->getSelector()) { in VisitObjCMessageExpr()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaObjCProperty.cpp2082 for (auto *PropDecl : PDecl->properties()) { in DiagnoseUnimplementedProperties() local
2083 if ((*LazyMap)[std::make_pair(PropDecl->getIdentifier(), in DiagnoseUnimplementedProperties()
2084 PropDecl->isClassProperty())]) in DiagnoseUnimplementedProperties()
2086 PropMap[std::make_pair(PropDecl->getIdentifier(), in DiagnoseUnimplementedProperties()
2087 PropDecl->isClassProperty())] = PropDecl; in DiagnoseUnimplementedProperties()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp957 if (const ObjCPropertyDecl *PropDecl = getAccessedProperty()) { in getExtraInvalidatedValues() local
958 if (const ObjCIvarDecl *PropIvar = PropDecl->getPropertyIvarDecl()) { in getExtraInvalidatedValues()
/openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6371 ObjCPropertyDecl *PropDecl = Properties[i]; in Write_prop_list_t_initializer() local
6376 Result += PropDecl->getName(); Result += "\","; in Write_prop_list_t_initializer()
6378 Context->getObjCEncodingForPropertyDecl(PropDecl, Container); in Write_prop_list_t_initializer()