Searched refs:DeclRegion (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | Regions.def | 74 ABSTRACT_REGION(DeclRegion, TypedValueRegion) 75 REGION(FieldRegion, DeclRegion) 76 REGION(ObjCIvarRegion, DeclRegion) 77 ABSTRACT_REGION(VarRegion, DeclRegion)
|
H A D | MemRegion.h | 934 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 D | CheckPlacementNew.cpp | 192 const DeclRegion *TheElementDeclRegion = SuperRegion->getAs<DeclRegion>(); in checkElementRegionAlign() 196 const DeclRegion *BaseDeclRegion = R->getBaseRegion()->getAs<DeclRegion>(); in checkElementRegionAlign()
|
H A D | PointerSubChecker.cpp | 147 if (const auto *SuperDLR = dyn_cast<DeclRegion>(SuperLR)) in checkPreStmt() 149 if (const auto *SuperDRR = dyn_cast<DeclRegion>(SuperRR)) in checkPreStmt()
|
H A D | ValistChecker.cpp | 175 if (const auto *DeclReg = Reg->getAs<DeclRegion>()) { in getVAListAsRegion()
|
H A D | MoveChecker.cpp | 578 dyn_cast_or_null<DeclRegion>(unwrapRValueReferenceIndirection(MR))) { in explainObject()
|
H A D | ContainerModeling.cpp | 706 if (const auto *DR = dyn_cast<DeclRegion>(ContReg)) { in getChangeTag()
|
H A D | GenericTaintChecker.cpp | 93 dyn_cast_or_null<DeclRegion>(SymReg->getSymbol()->getOriginRegion()); in isStdin()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
H A D | RetainCountDiagnostics.cpp | 859 auto *Region = dyn_cast<DeclRegion>(Sym->getOriginRegion()); in deriveParamLocation()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporterVisitors.cpp | 855 if (!isa<DeclRegion>(R)) in prettyPrintRegionName() 858 const auto *DR = cast<DeclRegion>(R); in prettyPrintRegionName()
|
H A D | MemRegion.cpp | 175 : DeclRegion(sReg, ObjCIvarRegionKind), IVD(ivd) { in ObjCIvarRegion()
|