Searched refs:DeclRegion (Results 1 – 6 of 6) sorted by relevance
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | Regions.def | 73 ABSTRACT_REGION(DeclRegion, TypedValueRegion) 74 REGION(FieldRegion, DeclRegion) 75 REGION(ObjCIvarRegion, DeclRegion) 76 REGION(VarRegion, DeclRegion)
|
D | MemRegion.h | 838 class DeclRegion : public TypedValueRegion { 842 DeclRegion(const Decl *d, const MemRegion* sReg, Kind k) in DeclRegion() function 858 class VarRegion : public DeclRegion { 863 : DeclRegion(vd, sReg, VarRegionKind) {} in VarRegion() 867 DeclRegion::ProfileRegion(ID, VD, superRegion, VarRegionKind); in ProfileRegion() 923 class FieldRegion : public DeclRegion { 927 : DeclRegion(fd, sReg, FieldRegionKind) {} in FieldRegion() 941 DeclRegion::ProfileRegion(ID, FD, superRegion, FieldRegionKind); in ProfileRegion() 956 class ObjCIvarRegion : public DeclRegion {
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCSelfInitChecker.cpp | 419 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts())) in isSelfVar()
|
D | GenericTaintChecker.cpp | 589 const DeclRegion *DeclReg = dyn_cast_or_null<DeclRegion>(Sm->getRegion()); in isStdin()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | MemRegion.cpp | 198 DefinedOrUnknownSVal Extent = DeclRegion::getExtent(svalBuilder); in getExtent() 226 : DeclRegion(ivd, sReg, ObjCIvarRegionKind) {} in ObjCIvarRegion() 314 DeclRegion::ProfileRegion(ID, ivd, superRegion, ObjCIvarRegionKind); in ProfileRegion() 317 void DeclRegion::ProfileRegion(llvm::FoldingSetNodeID& ID, const Decl *D, in ProfileRegion() 324 void DeclRegion::Profile(llvm::FoldingSetNodeID& ID) const { in Profile() 325 DeclRegion::ProfileRegion(ID, D, superRegion, getKind()); in Profile()
|
D | ExprEngineCallAndReturn.cpp | 631 if (!Target || !isa<DeclRegion>(Target)) in mayInlineCallKind()
|