Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRegions.def73 ABSTRACT_REGION(DeclRegion, TypedValueRegion)
74 REGION(FieldRegion, DeclRegion)
75 REGION(ObjCIvarRegion, DeclRegion)
76 ABSTRACT_REGION(VarRegion, DeclRegion)
H A DMemRegion.h924 class DeclRegion : public TypedValueRegion {
926 DeclRegion(const MemRegion *sReg, Kind k) : TypedValueRegion(sReg, k) { in DeclRegion() function
940 class VarRegion : public DeclRegion {
945 VarRegion(const MemRegion *sReg, Kind k) : DeclRegion(sReg, k) { in VarRegion()
1096 class FieldRegion : public DeclRegion {
1102 : DeclRegion(sReg, FieldRegionKind), FD(fd) { in FieldRegion()
1136 class ObjCIvarRegion : public DeclRegion {
/openbsd/gnu/llvm/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 DObjCSelfInitChecker.cpp420 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts())) in isSelfVar()
H A DReturnPointerRangeChecker.cpp95 const auto *DeclR = ER->getSuperRegion()->getAs<DeclRegion>(); in checkPreStmt()
H A DValistChecker.cpp176 if (const auto *DeclReg = Reg->getAs<DeclRegion>()) { in getVAListAsRegion()
H A DMoveChecker.cpp575 dyn_cast_or_null<DeclRegion>(unwrapRValueReferenceIndirection(MR))) { in explainObject()
H A DGenericTaintChecker.cpp97 dyn_cast_or_null<DeclRegion>(SymReg->getSymbol()->getOriginRegion()); in isStdin()
H A DContainerModeling.cpp701 if (const auto *DR = dyn_cast<DeclRegion>(ContReg)) { in getChangeTag()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp862 auto *Region = dyn_cast<DeclRegion>(Sym->getOriginRegion()); in deriveParamLocation()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp825 if (!isa<DeclRegion>(R)) in prettyPrintRegionName()
828 const auto *DR = cast<DeclRegion>(R); in prettyPrintRegionName()
H A DMemRegion.cpp165 : DeclRegion(sReg, ObjCIvarRegionKind), IVD(ivd) { in ObjCIvarRegion()