Searched refs:newStore (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStoreRef.h36 StoreRef &operator=(StoreRef const &newStore);
H A DStore.h319 inline StoreRef &StoreRef::operator=(StoreRef const &newStore) { argument
320 assert(&newStore.mgr == &mgr);
321 if (store != newStore.store) {
322 mgr.incrementReferenceCount(newStore.store);
324 store = newStore.getStore();
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp109 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, local
111 NewState.setStore(newStore);
112 SymReaper.setReapedStore(newStore);
136 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultInitial(getStore(), R, V); local
137 ProgramStateRef new_state = makeWithStore(newStore);
145 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultZero(getStore(), R); local
146 ProgramStateRef new_state = makeWithStore(newStore);
204 const StoreRef &newStore local
209 ProgramStateRef newState = makeWithStore(newStore);
226 const StoreRef &newStore local
429 setStore(const StoreRef &newStore) argument
[all...]

Completed in 70 milliseconds