Home
last modified time | relevance | path

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

/freebsd-14.2/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.h929 class DeclRegion : public TypedValueRegion {
931 DeclRegion(const MemRegion *sReg, Kind k) : TypedValueRegion(sReg, k) { in DeclRegion() function
945 class VarRegion : public DeclRegion {
950 VarRegion(const MemRegion *sReg, Kind k) : DeclRegion(sReg, k) { in VarRegion()
1101 class FieldRegion : public DeclRegion {
1107 : DeclRegion(sReg, FieldRegionKind), FD(fd) { in FieldRegion()
1141 class ObjCIvarRegion : public DeclRegion {
/freebsd-14.2/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 DReturnPointerRangeChecker.cpp92 const auto *DeclR = ER->getSuperRegion()->getAs<DeclRegion>(); in checkPreStmt()
H A DObjCSelfInitChecker.cpp416 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts())) in isSelfVar()
H A DValistChecker.cpp176 if (const auto *DeclReg = Reg->getAs<DeclRegion>()) { in getVAListAsRegion()
H A DMoveChecker.cpp578 dyn_cast_or_null<DeclRegion>(unwrapRValueReferenceIndirection(MR))) { in explainObject()
H A DGenericTaintChecker.cpp99 dyn_cast_or_null<DeclRegion>(SymReg->getSymbol()->getOriginRegion()); in isStdin()
H A DContainerModeling.cpp701 if (const auto *DR = dyn_cast<DeclRegion>(ContReg)) { in getChangeTag()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp859 auto *Region = dyn_cast<DeclRegion>(Sym->getOriginRegion()); in deriveParamLocation()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp851 if (!isa<DeclRegion>(R)) in prettyPrintRegionName()
854 const auto *DR = cast<DeclRegion>(R); in prettyPrintRegionName()
H A DMemRegion.cpp175 : DeclRegion(sReg, ObjCIvarRegionKind), IVD(ivd) { in ObjCIvarRegion()