Home
last modified time | relevance | path

Searched refs:DeclRegion (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRegions.def74 ABSTRACT_REGION(DeclRegion, TypedValueRegion)
75 REGION(FieldRegion, DeclRegion)
76 REGION(ObjCIvarRegion, DeclRegion)
77 ABSTRACT_REGION(VarRegion, DeclRegion)
H A DMemRegion.h934 class DeclRegion : public TypedValueRegion {
936 DeclRegion(const MemRegion *sReg, Kind k) : TypedValueRegion(sReg, k) { in DeclRegion() function
950 class VarRegion : public DeclRegion {
955 VarRegion(const MemRegion *sReg, Kind k) : DeclRegion(sReg, k) { in VarRegion()
1106 class FieldRegion : public DeclRegion {
1112 : DeclRegion(sReg, FieldRegionKind), FD(fd) { in FieldRegion()
1146 class ObjCIvarRegion : public DeclRegion {
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckPlacementNew.cpp192 const DeclRegion *TheElementDeclRegion = SuperRegion->getAs<DeclRegion>(); in checkElementRegionAlign()
196 const DeclRegion *BaseDeclRegion = R->getBaseRegion()->getAs<DeclRegion>(); in checkElementRegionAlign()
H A DPointerSubChecker.cpp147 if (const auto *SuperDLR = dyn_cast<DeclRegion>(SuperLR)) in checkPreStmt()
149 if (const auto *SuperDRR = dyn_cast<DeclRegion>(SuperRR)) in checkPreStmt()
H A DValistChecker.cpp175 if (const auto *DeclReg = Reg->getAs<DeclRegion>()) { in getVAListAsRegion()
H A DMoveChecker.cpp578 dyn_cast_or_null<DeclRegion>(unwrapRValueReferenceIndirection(MR))) { in explainObject()
H A DContainerModeling.cpp706 if (const auto *DR = dyn_cast<DeclRegion>(ContReg)) { in getChangeTag()
H A DGenericTaintChecker.cpp93 dyn_cast_or_null<DeclRegion>(SymReg->getSymbol()->getOriginRegion()); in isStdin()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp859 auto *Region = dyn_cast<DeclRegion>(Sym->getOriginRegion()); in deriveParamLocation()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp855 if (!isa<DeclRegion>(R)) in prettyPrintRegionName()
858 const auto *DR = cast<DeclRegion>(R); in prettyPrintRegionName()
H A DMemRegion.cpp175 : DeclRegion(sReg, ObjCIvarRegionKind), IVD(ivd) { in ObjCIvarRegion()