reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
 1325   const VarRegion* getVarRegion(const VarDecl *D, const LocationContext *LC);

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
  655   return getStateManager().getRegionManager().getVarRegion(D, LC);
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
  135     return svalBuilder.makeLoc(MRMgr.getVarRegion(VD, LC));
tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
 2791       VR = MemMgr.getVarRegion(VR->getDecl(), LC);
tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
  173       VR = MemMgr.getVarRegion(VR->getDecl(), LC);
tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
  170       ? M.getVarRegion(LhsDecl, C.getLocationContext())
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
 1842       return MRMgr.getVarRegion(VD, N->getLocationContext());
tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
  250       State->getStateManager().getRegionManager().getVarRegion(PVD, SFC);
  530       Loc ParamLoc = SVB.makeLoc(MRMgr.getVarRegion(ParamDecl, CalleeCtx));
 1353     Loc SelfLoc = SVB.makeLoc(MRMgr.getVarRegion(SelfD, CalleeCtx));
tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
   75     const VarRegion *VarMem = MRMgr.getVarRegion(VD, LCtx);
tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
 1485     OriginalVR = MemMgr.getVarRegion(VD, LC);
 1489       VR = MemMgr.getVarRegion(VD, LC);
 1494       OriginalVR = MemMgr.getVarRegion(VD, LC);
tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
 1101               RM.getRegionManager().getVarRegion(VD, LCtx);
tools/clang/unittests/StaticAnalyzer/StoreTest.cpp
   37     Loc LX0 = loc::MemRegionVal(MRMgr.getVarRegion(VDX0, SFC));
   38     Loc LY0 = loc::MemRegionVal(MRMgr.getVarRegion(VDY0, SFC));
   39     Loc LZ0 = loc::MemRegionVal(MRMgr.getVarRegion(VDZ0, SFC));
   40     Loc LX1 = loc::MemRegionVal(MRMgr.getVarRegion(VDX1, SFC));
   41     Loc LY1 = loc::MemRegionVal(MRMgr.getVarRegion(VDY1, SFC));
tools/clang/unittests/StaticAnalyzer/SymbolReaperTest.cpp
   30     const VarRegion *VR = Eng.getRegionManager().getVarRegion(VD, SFC);