HomeSort by relevance Sort by last modified time
    Searched full:new_state (Results 1 - 25 of 368) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/cython/src/Cython/Plex/
DFA.py 33 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 = self.new_machine.new_state(action
    [all...]
Machines.py 30 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[event] = Non
159 def new_state(self, action = None): member in class:FastMachine
    [all...]
  /external/chromium_org/ash/shelf/
shelf_layout_manager_observer.h 26 virtual void WillChangeVisibilityState(ShelfVisibilityState new_state) {}
29 virtual void OnAutoHideStateChanged(ShelfAutoHideState new_state) {}
  /external/chromium_org/ui/app_list/
speech_ui_model.cc 77 SpeechRecognitionState new_state) {
78 if (state_ == new_state)
81 state_ = new_state;
91 OnSpeechRecognitionStateChanged(new_state));
  /external/chromium_org/media/base/
fake_audio_renderer_sink.cc 71 void FakeAudioRendererSink::ChangeState(State new_state) {
82 << kStateNames[state_] << " -> " << kStateNames[new_state];
83 state_ = new_state;
  /external/chromium_org/content/child/service_worker/
web_service_worker_impl.cc 45 blink::WebServiceWorkerState new_state) {
47 CommitState(new_state);
49 queued_states_.push_back(new_state);
92 void WebServiceWorkerImpl::CommitState(blink::WebServiceWorkerState new_state) {
95 state_ = new_state;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
state.c 112 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...]
  /external/mesa3d/src/mesa/main/
state.c 112 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...]
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_active.c 55 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/smack/src/org/jivesoftware/smackx/carbons/
CarbonManager.java 86 private IQ carbonsEnabledIQ(final boolean new_state) {
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) {
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) {
148 if (enabled_state == new_state)
151 IQ setIQ = carbonsEnabledIQ(new_state);
    [all...]
  /external/chromium_org/chrome/browser/captive_portal/
captive_portal_tab_reloader.cc 188 void CaptivePortalTabReloader::SetState(State new_state) {
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 == STATE_NONE |
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCPeerConnectionObserver.mm 54 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/ui/app_list/search/
term_break_iterator.cc 38 const State new_state = GetNewState(word_[iter_->array_pos()]); local
39 const bool is_boundary = kBoundary[state_][new_state];
40 state_ = new_state;
  /external/chromium_org/chrome/browser/ui/search/
search_model_observer.h 15 const SearchModel::State& new_state) = 0;
search_delegate.cc 20 const SearchModel::State& new_state) {
21 browser_model_->SetState(new_state);
instant_page.cc 84 const SearchModel::State& new_state) {
85 if (old_state.instant_support != new_state.instant_support)
86 InstantSupportDetermined(new_state.instant_support == INSTANT_SUPPORT_YES);
  /external/chromium_org/chrome/browser/chromeos/mobile/
mobile_activator.cc 702 PlanActivationState new_state = PickNextState(network, &error_description); local
704 ChangeState(network, new_state, error_description);
709 PlanActivationState new_state = state_; local
711 new_state = PickNextOfflineState(network);
713 new_state = PickNextOnlineState(network);
714 if (new_state != PLAN_ACTIVATION_ERROR &&
728 new_state = PLAN_ACTIVATION_DELAY_OTASP;
732 new_state = PLAN_ACTIVATION_START;
737 new_state = PLAN_ACTIVATION_TRYING_OTASP;
740 new_state = state_
759 PlanActivationState new_state = state_; local
788 PlanActivationState new_state = state_; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_context.c 53 i915InvalidateState(struct gl_context * ctx, GLuint new_state)
55 _swrast_InvalidateState(ctx, new_state);
56 _swsetup_InvalidateState(ctx, new_state);
57 _vbo_InvalidateState(ctx, new_state);
58 _tnl_InvalidateState(ctx, new_state);
59 _tnl_invalidate_vertex_state(ctx, new_state);
60 intel_context(ctx)->NewGLState |= new_state;
73 if (new_state & (_NEW_STENCIL | _NEW_BUFFERS | _NEW_POLYGON))
75 if (new_state & (_NEW_LIGHT))
77 if (new_state & (_NEW_PROGRAM | _NEW_PROGRAM_CONSTANTS)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_context.c 53 i915InvalidateState(struct gl_context * ctx, GLuint new_state)
55 _swrast_InvalidateState(ctx, new_state);
56 _swsetup_InvalidateState(ctx, new_state);
57 _vbo_InvalidateState(ctx, new_state);
58 _tnl_InvalidateState(ctx, new_state);
59 _tnl_invalidate_vertex_state(ctx, new_state);
60 intel_context(ctx)->NewGLState |= new_state;
73 if (new_state & (_NEW_STENCIL | _NEW_BUFFERS | _NEW_POLYGON))
75 if (new_state & (_NEW_LIGHT))
77 if (new_state & (_NEW_PROGRAM | _NEW_PROGRAM_CONSTANTS)
    [all...]
  /external/bluetooth/bluedroid/test/suite/support/
adapter.c 52 void adapter_state_changed(bt_state_t new_state) {
53 state = new_state;
  /external/chromium_org/base/android/
application_status_listener.cc 68 jint new_state) {
69 ApplicationState application_state = static_cast<ApplicationState>(new_state);
  /external/chromium_org/pdf/
button.cc 147 void Button::ChangeState(ButtonState new_state, bool force) {
151 if ((state_ == BUTTON_PRESSED_STICKY && new_state != BUTTON_PRESSED_STICKY)
153 (state_ != BUTTON_PRESSED_STICKY && new_state == BUTTON_PRESSED_STICKY))
157 if (state_ != new_state) {
158 state_ = new_state;
  /external/chromium_org/content/renderer/media/
rtc_peer_connection_handler_unittest.cc 545 webrtc::PeerConnectionInterface::SignalingState new_state = local
552 pc_handler_->OnSignalingChange(new_state);
554 new_state = webrtc::PeerConnectionInterface::kHaveLocalPrAnswer;
560 pc_handler_->OnSignalingChange(new_state);
562 new_state = webrtc::PeerConnectionInterface::kHaveLocalOffer;
568 pc_handler_->OnSignalingChange(new_state);
570 new_state = webrtc::PeerConnectionInterface::kHaveRemotePrAnswer;
576 pc_handler_->OnSignalingChange(new_state);
578 new_state = webrtc::PeerConnectionInterface::kClosed;
584 pc_handler_->OnSignalingChange(new_state);
590 webrtc::PeerConnectionInterface::IceConnectionState new_state = local
666 webrtc::PeerConnectionInterface::IceGatheringState new_state = local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/idle/
idle_manager.cc 34 IdleState new_state) OVERRIDE;
50 IdleState new_state) {
52 args->Append(IdleManager::CreateIdleValue(new_state));
257 IdleState new_state = local
260 if (monitor.listeners > 0 && monitor.last_state != new_state)
261 event_delegate_->OnStateChanged(it->first, new_state);
262 monitor.last_state = new_state;
  /external/qemu/qobject/
json-lexer.c 281 int char_consumed, new_state; local
290 new_state = json_lexer[lexer->state][(uint8_t)ch];
291 char_consumed = !TERMINAL_NEEDED_LOOKAHEAD(lexer->state, new_state);
296 switch (new_state) {
303 lexer->emit(lexer, lexer->token, new_state, lexer->x, lexer->y);
308 new_state = IN_START;
327 new_state = IN_START;
328 lexer->state = new_state;
333 lexer->state = new_state;

Completed in 911 milliseconds

1 2 3 4 5 6 7 8 91011>>