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

1234567891011>>

/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.cc74 SpeechRecognitionState new_state) {
75 if (state_ == new_state)
78 state_ = new_state;
88 OnSpeechRecognitionStateChanged(new_state));
73 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) {
48 ChangeState(new_state);
50 queued_states_.push_back(new_state);
93 void WebServiceWorkerImpl::ChangeState(blink::WebServiceWorkerState new_state) { argument
96 state_ = new_state;
44 OnStateChanged( blink::WebServiceWorkerState new_state) argument
/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/chrome/browser/chromeos/input_method/
H A Dinput_method_persistence.h29 void OnSessionStateChange(InputMethodManager::State new_state);
H A Dinput_method_configuration.cc23 InputMethodManager::State new_state) {
24 input_method_persistence->OnSessionStateChange(new_state);
25 input_method_manager_impl->SetState(new_state);
21 OnSessionStateChange(InputMethodManagerImpl* input_method_manager_impl, InputMethodPersistence* input_method_persistence, InputMethodManager::State new_state) argument
/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);
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dterm_break_iterator.cc38 const State new_state = GetNewState(word_[iter_->array_pos()]); local
39 const bool is_boundary = kBoundary[state_][new_state];
40 state_ = new_state;

Completed in 2971 milliseconds

1234567891011>>