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

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
  308     : store(sr.store), mgr(sr.mgr)
  310   if (store)
  311     mgr.incrementReferenceCount(store);
  315   if (store)
  316     mgr.decrementReferenceCount(store);
  321   if (store != newStore.store) {
  321   if (store != newStore.store) {
  322     mgr.incrementReferenceCount(newStore.store);
  323     mgr.decrementReferenceCount(store);
  324     store = newStore.getStore();
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
   41     return x.store == store;
   41     return x.store == store;
   46   Store getStore() const { return store; }