HomeSort by relevance Sort by last modified time
    Searched refs:NewState (Results 1 - 9 of 9) sorted by null

  /external/libppp/src/
fsm.c 169 NewState(struct fsm *fp, int new)
250 NewState(fp, ST_REQSENT);
259 NewState(fp, ST_STARTING);
265 NewState(fp, ST_STOPPED); /* XXX: This is a hack ! */
270 NewState(fp, ST_STOPPED); /* XXX: This is a not-so-bad hack ! */
287 NewState(fp, ST_STOPPING);
299 NewState(fp, ST_CLOSED);
304 NewState(fp, ST_REQSENT);
318 NewState(fp, ST_INITIAL);
323 NewState(fp, ST_INITIAL)
    [all...]
  /external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 489 State *NewState = NULL;
499 NewState = VI->second;
501 NewState = new State;
502 NewState->stateInfo = NewStateResources;
503 D.addState(NewState);
504 Visited[NewStateResources] = NewState;
505 WorkList.push_back(NewState);
508 current->addTransition(InsnClass, NewState);
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 100 ProgramState NewState = *state;
102 NewState.Env = EnvMgr.removeDeadBindings(NewState.Env, SymReaper, state);
105 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx,
107 NewState.setStore(newStore);
110 ProgramStateRef Result = getPersistentState(NewState);
124 ProgramStateRef newState = makeWithStore(Mgr.StoreMgr->Bind(getStore(),
128 return Mgr.getOwningEngine()->processRegionChange(newState, MR);
130 return newState;
176 ProgramStateRef newState = makeWithStore(newStore)
    [all...]
ExprEngine.cpp 127 if (ProgramStateRef newState = state->assume(*Constraint, true))
128 state = newState;
815 ProgramStateRef NewState =
817 if (NewState != State)
818 Pred = Bldr.generateNode(OCE, Pred, NewState, /*Tag=*/0,
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 328 CallEventRef<T> cloneWithState(ProgramStateRef NewState) const;
331 CallEventRef<> cloneWithState(ProgramStateRef NewState) const {
332 return cloneWithState<CallEvent>(NewState);
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocFast.cpp 177 void definePhysReg(MachineInstr *MI, unsigned PhysReg, RegState NewState);
403 RegState NewState) {
413 PhysRegState[PhysReg] = NewState;
418 PhysRegState[PhysReg] = NewState;
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 652 void setBundleLockState(BundleLockStateType NewState) {
653 BundleLockState = NewState;
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 227 DiagState *NewState = &DiagStates.back();
229 DiagStatePoints.insert(Pos+1, DiagStatePoint(NewState,
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 1930 milliseconds