Searched refs:new_state (Results 1 - 25 of 335) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DDFA.py33 new_state = state_map.old_to_new(epsilon_closure(old_state))
34 new_machine.make_initial_state(key, new_state)
37 for new_state in new_machine.states:
39 for old_state in state_map.new_to_old(new_state):
44 new_machine.add_transitions(new_state, event, state_map.old_to_new(old_states))
92 old_to_new_dict = None # {(old_state,...) : new_state}
93 new_to_old_dict = None # {id(new_state) : old_state_set}
109 new_state = self.old_to_new_dict.get(key, None)
110 if not new_state:
112 new_state
[all...]
H A DMachines.py30 def new_state(self): member in class:Machine
40 state = self.new_state()
80 def add_transition(self, event, new_state):
81 self.transitions.add(event, new_state)
142 new_state = self.new_state()
143 old_to_new[old_state] = new_state
147 new_state = old_to_new[old_state]
150 new_state[event] = old_to_new[old_state_set.keys()[0]]
152 new_state[even
159 def new_state(self, action = None): member in class:FastMachine
[all...]
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_active.c55 Uint8 new_state; local
59 new_state = (SDL_appstate | state);
61 new_state = (SDL_appstate & ~state);
65 if ( new_state == SDL_appstate ) {
70 SDL_appstate = new_state;
/external/chromium_org/chrome/browser/ui/search/
H A Dsearch_model_observer.h15 const SearchModel::State& new_state) = 0;
H A Dsearch_delegate.cc20 const SearchModel::State& new_state) {
21 browser_model_->SetState(new_state);
19 ModelChanged(const SearchModel::State& old_state, const SearchModel::State& new_state) argument
/external/chromium_org/ash/shelf/
H A Dshelf_layout_manager_observer.h26 virtual void WillChangeVisibilityState(ShelfVisibilityState new_state) {} argument
29 virtual void OnAutoHideStateChanged(ShelfAutoHideState new_state) {} argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dstate.c112 GLbitfield new_state = 0x0; local
210 new_state |= _NEW_PROGRAM;
218 new_state |= _NEW_PROGRAM;
226 new_state |= _NEW_PROGRAM;
233 return new_state;
243 GLbitfield new_state = 0x0; local
249 new_state |= _NEW_PROGRAM_CONSTANTS;
259 new_state |= _NEW_PROGRAM_CONSTANTS;
267 new_state |= _NEW_PROGRAM_CONSTANTS;
271 return new_state;
458 GLbitfield new_state = ctx->NewState; local
[all...]
H A Dapi_arrayelt.h43 extern void _ae_invalidate_state( struct gl_context *ctx, GLuint new_state );
71 _ae_invalidate_state( struct gl_context *ctx, GLuint new_state )
/external/mesa3d/src/mesa/main/
H A Dstate.c112 GLbitfield new_state = 0x0; local
210 new_state |= _NEW_PROGRAM;
218 new_state |= _NEW_PROGRAM;
226 new_state |= _NEW_PROGRAM;
233 return new_state;
243 GLbitfield new_state = 0x0; local
249 new_state |= _NEW_PROGRAM_CONSTANTS;
259 new_state |= _NEW_PROGRAM_CONSTANTS;
267 new_state |= _NEW_PROGRAM_CONSTANTS;
271 return new_state;
458 GLbitfield new_state = ctx->NewState; local
[all...]
H A Dapi_arrayelt.h43 extern void _ae_invalidate_state( struct gl_context *ctx, GLuint new_state );
71 _ae_invalidate_state( struct gl_context *ctx, GLuint new_state )
/external/chromium_org/chrome/browser/captive_portal/
H A Dcaptive_portal_tab_reloader.cc188 void CaptivePortalTabReloader::SetState(State new_state) { argument
199 DCHECK(new_state == STATE_NONE ||
200 new_state == STATE_TIMER_RUNNING);
203 DCHECK(new_state == STATE_NONE ||
204 new_state == STATE_MAYBE_BROKEN_BY_PORTAL ||
205 new_state == STATE_NEEDS_RELOAD);
208 DCHECK(new_state == STATE_NONE ||
209 new_state == STATE_BROKEN_BY_PORTAL ||
210 new_state == STATE_NEEDS_RELOAD);
213 DCHECK(new_state
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dmediastreamtrack.h58 virtual bool set_state(MediaStreamTrackInterface::TrackState new_state) { argument
59 bool fire_on_change = (state_ != new_state);
60 state_ = new_state;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCPeerConnectionObserver.h48 PeerConnectionInterface::SignalingState new_state) OVERRIDE;
64 PeerConnectionInterface::IceConnectionState new_state) OVERRIDE;
68 PeerConnectionInterface::IceGatheringState new_state) OVERRIDE;
H A DRTCPeerConnectionObserver.mm54 PeerConnectionInterface::SignalingState new_state) {
56 [RTCEnumConverter convertSignalingStateToObjC:new_state];
89 PeerConnectionInterface::IceConnectionState new_state) {
91 [RTCEnumConverter convertIceConnectionStateToObjC:new_state];
97 PeerConnectionInterface::IceGatheringState new_state) {
99 [RTCEnumConverter convertIceGatheringStateToObjC:new_state];
/external/chromium_org/chrome/browser/ui/app_list/
H A Dstart_page_observer.h23 SpeechRecognitionState new_state) = 0;
/external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
H A Dswrast_setup.h50 _swsetup_InvalidateState( struct gl_context *ctx, GLuint new_state );
/external/chromium_org/ui/app_list/
H A Dspeech_ui_model.cc77 SpeechRecognitionState new_state) {
78 if (state_ == new_state)
81 state_ = new_state;
91 OnSpeechRecognitionStateChanged(new_state));
76 SetSpeechRecognitionState( SpeechRecognitionState new_state) argument
H A Dspeech_ui_model_observer.h36 SpeechRecognitionState new_state) {}
35 OnSpeechRecognitionStateChanged( SpeechRecognitionState new_state) argument
/external/mesa3d/src/mesa/swrast_setup/
H A Dswrast_setup.h50 _swsetup_InvalidateState( struct gl_context *ctx, GLuint new_state );
/external/chromium_org/content/child/service_worker/
H A Dweb_service_worker_impl.cc45 blink::WebServiceWorkerState new_state) {
47 CommitState(new_state);
49 queued_states_.push_back(new_state);
92 void WebServiceWorkerImpl::CommitState(blink::WebServiceWorkerState new_state) { argument
95 state_ = new_state;
44 OnStateChanged( blink::WebServiceWorkerState new_state) argument
/external/chromium_org/extensions/browser/api/cast_channel/
H A Dlogger.h58 void LogSocketReadyState(int channel_id, proto::ReadyState new_state);
59 void LogSocketConnectState(int channel_id, proto::ConnectionState new_state);
60 void LogSocketReadState(int channel_id, proto::ReadState new_state);
61 void LogSocketWriteState(int channel_id, proto::WriteState new_state);
62 void LogSocketErrorState(int channel_id, proto::ErrorState new_state);
/external/smack/src/org/jivesoftware/smackx/carbons/
H A DCarbonManager.java86 private IQ carbonsEnabledIQ(final boolean new_state) { argument
89 return "<" + (new_state? "enable" : "disable") + " xmlns='" + Carbon.NAMESPACE + "'/>";
118 * @param new_state whether carbons should be enabled or disabled
120 public void sendCarbonsEnabled(final boolean new_state) { argument
121 IQ setIQ = carbonsEnabledIQ(new_state);
127 enabled_state = new_state;
143 * @param new_state whether carbons should be enabled or disabled
147 public boolean setCarbonsEnabled(final boolean new_state) { argument
148 if (enabled_state == new_state)
151 IQ setIQ = carbonsEnabledIQ(new_state);
[all...]
/external/bluetooth/bluedroid/test/suite/support/
H A Dadapter.c52 void adapter_state_changed(bt_state_t new_state) { argument
53 state = new_state;
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_exec.c84 void vbo_exec_invalidate_state( struct gl_context *ctx, GLuint new_state )
88 if (new_state & (_NEW_PROGRAM|_NEW_ARRAY)) {
92 if (new_state & (_NEW_PROGRAM|_NEW_EVAL))
95 _ae_invalidate_state(ctx, new_state);
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec.c84 void vbo_exec_invalidate_state( struct gl_context *ctx, GLuint new_state )
88 if (new_state & (_NEW_PROGRAM|_NEW_ARRAY)) {
92 if (new_state & (_NEW_PROGRAM|_NEW_EVAL))
95 _ae_invalidate_state(ctx, new_state);

Completed in 881 milliseconds

1234567891011>>