Home
last modified time | relevance | path

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

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DRegions.def73 ABSTRACT_REGION(DeclRegion, TypedValueRegion)
74 REGION(FieldRegion, DeclRegion)
75 REGION(ObjCIvarRegion, DeclRegion)
76 REGION(VarRegion, DeclRegion)
DMemRegion.h838 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/
DObjCSelfInitChecker.cpp419 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts())) in isSelfVar()
DGenericTaintChecker.cpp589 const DeclRegion *DeclReg = dyn_cast_or_null<DeclRegion>(Sm->getRegion()); in isStdin()
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp198 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()
DExprEngineCallAndReturn.cpp631 if (!Target || !isa<DeclRegion>(Target)) in mayInlineCallKind()