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

Derived Classes

tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
  350 class RegionStoreManager : public StoreManager {

Declarations

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
   21 class StoreManager;
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
   38 class StoreManager;

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
   63   StoreManager &getStoreManager() {
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
  386   StoreManager &getStoreManager() { return StateMgr.getStoreManager(); }
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
   43 typedef std::unique_ptr<StoreManager>(*StoreManagerCreator)(
  464   std::unique_ptr<StoreManager>        StoreMgr;
  532   StoreManager &getStoreManager() { return *StoreMgr; }
  552   void iterBindings(ProgramStateRef state, StoreManager::BindingsHandler& F) {
  743   StoreManager &SM = *getStateManager().StoreMgr;
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
  264     virtual bool HandleBinding(StoreManager& SMgr, Store store,
  278     bool HandleBinding(StoreManager& SMgr, Store store, const MemRegion* R,
  301 inline StoreRef::StoreRef(Store store, StoreManager & smgr)
  330 std::unique_ptr<StoreManager>
  332 std::unique_ptr<StoreManager>
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
   31   StoreManager &mgr;
   34   StoreRef(Store store, StoreManager &smgr);
   47   const StoreManager &getStoreManager() const { return mgr; }
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
  578                SymbolManager &symmgr, StoreManager &storeMgr)
tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
  197   StoreManager &StoreMgr;
  202   FindUninitializedField(StoreManager &storeMgr, MemRegionManager &mrMgr,
tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
  214     StoreManager& SM = C.getStoreManager();
tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
  649     StoreManager::FindUniqueBinding FB(Sym);
tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
  299   class CallBack : public StoreManager::BindingsHandler {
  309     bool HandleBinding(StoreManager &SMgr, Store S, const MemRegion *Region,
tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
  338   StoreManager &StoreMgr = StateMgr.getStoreManager();
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
  126                               StoreManager &StoreMgr) {
tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
  204   StoreManager::InvalidatedRegions TopLevelInvalidated;
  205   StoreManager::InvalidatedRegions Invalidated;
  535   StoreManager &StoreMgr = state->getStateManager().getStoreManager();
  613       StoreManager &StoreMgr = state->getStateManager().getStoreManager();
tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
  350 class RegionStoreManager : public StoreManager {
  675 std::unique_ptr<StoreManager>
  681 std::unique_ptr<StoreManager>
 1001   StoreManager::InvalidatedRegions *Regions;
 1011                           StoreManager::InvalidatedRegions *r,
tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
  568         StoreManager &storeMgr = StateMgr.getStoreManager();
  644     StoreManager &storeMgr = StateMgr.getStoreManager();
tools/clang/lib/StaticAnalyzer/Core/Store.cpp
  544 bool StoreManager::FindUniqueBinding::HandleBinding(StoreManager& SMgr,
tools/clang/unittests/StaticAnalyzer/StoreTest.cpp
   22     StoreManager &StMgr = Eng.getStoreManager();
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
  297           __safe_conversion_up<_Up, _Ep>,
  301 	operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>