Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp572 if (PropDecl->getSetterKind() == ObjCPropertyDecl::Retain) in diagnoseMissingReleases()
665 if (PropDecl) { in diagnoseExtraRelease()
666 if (PropDecl->isReadOnly()) in diagnoseExtraRelease()
669 PropDecl = PropImpl->getPropertyDecl(); in diagnoseExtraRelease()
681 !PropDecl->isReadOnly()) || in diagnoseExtraRelease()
695 if (PropDecl->getSetterKind() == ObjCPropertyDecl::Weak) in diagnoseExtraRelease()
811 if (PropDecl->isReadOnly()) in findShadowedPropertyDecl()
820 IdentifierInfo *ID = PropDecl->getIdentifier(); in findShadowedPropertyDecl()
890 const ObjCPropertyDecl *PropDecl; in getDeallocReleaseRequirement() local
894 ObjCPropertyDecl::SetterKind SK = PropDecl->getSetterKind(); in getDeallocReleaseRequirement()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp61 ObjCPropertyDecl *PropDecl = P->first; in VisitObjCMessageExpr() local
62 if (PropDecl->getSetterName() == ME->getSelector()) { in VisitObjCMessageExpr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp2030 for (auto *PropDecl : PDecl->properties()) { in DiagnoseUnimplementedProperties() local
2031 if ((*LazyMap)[std::make_pair(PropDecl->getIdentifier(), in DiagnoseUnimplementedProperties()
2032 PropDecl->isClassProperty())]) in DiagnoseUnimplementedProperties()
2034 PropMap[std::make_pair(PropDecl->getIdentifier(), in DiagnoseUnimplementedProperties()
2035 PropDecl->isClassProperty())] = PropDecl; in DiagnoseUnimplementedProperties()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp933 if (const ObjCPropertyDecl *PropDecl = getAccessedProperty()) { in getExtraInvalidatedValues() local
934 if (const ObjCIvarDecl *PropIvar = PropDecl->getPropertyIvarDecl()) { in getExtraInvalidatedValues()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp6374 ObjCPropertyDecl *PropDecl = Properties[i]; in Write_prop_list_t_initializer() local
6379 Result += PropDecl->getName(); Result += "\","; in Write_prop_list_t_initializer()
6381 Context->getObjCEncodingForPropertyDecl(PropDecl, Container); in Write_prop_list_t_initializer()