Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.h891 class DeclRegion : public TypedValueRegion {
893 DeclRegion(const MemRegion *sReg, Kind k) : TypedValueRegion(sReg, k) { in DeclRegion() function
906 class VarRegion : public DeclRegion {
911 VarRegion(const MemRegion *sReg, Kind k) : DeclRegion(sReg, k) { in VarRegion()
1054 class FieldRegion : public DeclRegion {
1060 : DeclRegion(sReg, FieldRegionKind), FD(fd) {} in FieldRegion()
1091 class ObjCIvarRegion : public DeclRegion {
/netbsd-src/external/apache2/llvm/dist/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.cpp418 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.cpp576 dyn_cast_or_null<DeclRegion>(unwrapRValueReferenceIndirection(MR))) { in explainObject()
H A DGenericTaintChecker.cpp775 const auto *DeclReg = dyn_cast_or_null<DeclRegion>(Sm->getRegion()); in isStdin()
H A DContainerModeling.cpp715 if (const auto *DR = dyn_cast<DeclRegion>(ContReg)) { in getChangeTag()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp866 auto *Region = dyn_cast<DeclRegion>(Sym->getOriginRegion()); in deriveParamLocation()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp767 if (!isa<DeclRegion>(R)) in prettyPrintRegionName()
770 const auto *DR = cast<DeclRegion>(R); in prettyPrintRegionName()
H A DMemRegion.cpp164 : DeclRegion(sReg, ObjCIvarRegionKind), IVD(ivd) {} in ObjCIvarRegion()