Searched refs:DeclRegion (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/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 REGION(VarRegion, DeclRegion)
|
| H A D | MemRegion.h | 908 class DeclRegion : public TypedValueRegion { 912 DeclRegion(const ValueDecl *d, const MemRegion *sReg, Kind k) in DeclRegion() function 931 class VarRegion : public DeclRegion { 936 : DeclRegion(vd, sReg, VarRegionKind) { in VarRegion() 947 DeclRegion::ProfileRegion(ID, VD, superRegion, VarRegionKind); in ProfileRegion() 1008 class FieldRegion : public DeclRegion { 1012 : DeclRegion(fd, sReg, FieldRegionKind) {} in FieldRegion() 1016 DeclRegion::ProfileRegion(ID, FD, superRegion, FieldRegionKind); in ProfileRegion() 1041 class ObjCIvarRegion : public DeclRegion {
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCSelfInitChecker.cpp | 419 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts())) in isSelfVar()
|
| H A D | GenericTaintChecker.cpp | 600 const DeclRegion *DeclReg = dyn_cast_or_null<DeclRegion>(Sm->getRegion()); in isStdin()
|
| H A D | ValistChecker.cpp | 175 if (const auto *DeclReg = Reg->getAs<DeclRegion>()) { in getVAListAsRegion()
|
| H A D | MoveChecker.cpp | 563 dyn_cast_or_null<DeclRegion>(unwrapRValueReferenceIndirection(MR))) { in explainObject()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | MemRegion.cpp | 186 DefinedOrUnknownSVal Extent = DeclRegion::getExtent(svalBuilder); in getExtent() 214 : DeclRegion(ivd, sReg, ObjCIvarRegionKind) {} in ObjCIvarRegion() 306 DeclRegion::ProfileRegion(ID, ivd, superRegion, ObjCIvarRegionKind); in ProfileRegion() 309 void DeclRegion::ProfileRegion(llvm::FoldingSetNodeID& ID, const Decl *D, in ProfileRegion() 316 void DeclRegion::Profile(llvm::FoldingSetNodeID& ID) const { in Profile() 317 DeclRegion::ProfileRegion(ID, D, superRegion, getKind()); in Profile()
|
| H A D | BugReporterVisitors.cpp | 618 if (!isa<DeclRegion>(R)) in prettyPrintRegionName() 621 const auto *DR = cast<DeclRegion>(R); in prettyPrintRegionName()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountDiagnostics.cpp | 710 auto *Region = dyn_cast<DeclRegion>(sym->getOriginRegion()); in deriveParamLocation()
|