Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp109 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, in removeDeadBindingsFromEnvironmentAndStore() local
111 NewState.setStore(newStore); in removeDeadBindingsFromEnvironmentAndStore()
112 SymReaper.setReapedStore(newStore); in removeDeadBindingsFromEnvironmentAndStore()
136 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultInitial(getStore(), R, V); in bindDefaultInitial() local
137 ProgramStateRef new_state = makeWithStore(newStore); in bindDefaultInitial()
145 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultZero(getStore(), R); in bindDefaultZero() local
146 ProgramStateRef new_state = makeWithStore(newStore); in bindDefaultZero()
204 const StoreRef &newStore in invalidateRegionsImpl() local
209 ProgramStateRef newState = makeWithStore(newStore); in invalidateRegionsImpl()
226 const StoreRef &newStore = in killBinding() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h305 inline StoreRef &StoreRef::operator=(StoreRef const &newStore) {
306 assert(&newStore.mgr == &mgr);
307 if (store != newStore.store) {
308 mgr.incrementReferenceCount(newStore.store);
310 store = newStore.getStore();
H A DStoreRef.h36 StoreRef &operator=(StoreRef const &newStore);