Searched refs:state_ (Results 276 - 300 of 798) sorted by path

<<11121314151617181920>>

/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_database.h318 State state_; member in class:content::ServiceWorkerDatabase
H A Dservice_worker_storage.cc263 if (state_ != INITIALIZING || !context_) {
269 DCHECK_EQ(INITIALIZED, state_);
301 if (state_ != INITIALIZING || !context_) {
307 DCHECK_EQ(INITIALIZED, state_);
336 if (state_ != INITIALIZED || !context_)
357 if (state_ != INITIALIZING || !context_) {
363 DCHECK_EQ(INITIALIZED, state_);
400 if (state_ != INITIALIZING || !context_) {
406 DCHECK_EQ(INITIALIZED, state_);
428 DCHECK(state_
[all...]
H A Dservice_worker_storage.h371 State state_; member in class:content::ServiceWorkerStorage
/external/chromium_org/content/browser/speech/
H A Dgoogle_streaming_remote_engine.cc84 state_(STATE_IDLE) {}
197 return state_ != STATE_IDLE;
210 DCHECK_LE(state_, STATE_MAX_VALUE);
217 state_ = ExecuteTransitionAndGetNextState(event_args);
226 switch (state_) {
374 return state_;
392 return state_;
450 return state_;
528 return state_;
534 << " in state " << state_;
[all...]
H A Dgoogle_streaming_remote_engine.h154 FSMState state_; member in class:content::GoogleStreamingRemoteEngine
H A Dspeech_recognizer_impl.cc186 state_(STATE_IDLE) {
241 return state_ != STATE_IDLE && state_ != STATE_ENDED;
246 const bool is_capturing_audio = state_ >= STATE_STARTING &&
247 state_ <= STATE_RECOGNIZING;
323 DCHECK_LE(state_, STATE_MAX_VALUE);
340 state_ = ExecuteTransitionAndGetNextState(event_args);
348 switch (state_) {
471 const bool route_to_endpointer = state_ >= STATE_ESTIMATING_ENVIRONMENT &&
472 state_ <
[all...]
H A Dspeech_recognizer_impl.h157 FSMState state_; member in class:content::SpeechRecognizerImpl
H A Dspeech_recognizer_impl_android.cc33 state_(STATE_IDLE) {
66 state_ = STATE_IDLE;
91 return state_ != STATE_IDLE;
96 return state_ == STATE_CAPTURING_AUDIO;
107 state_ = STATE_CAPTURING_AUDIO;
141 if (state_ == STATE_CAPTURING_AUDIO)
142 state_ = STATE_AWAITING_FINAL_RESULT;
197 state_ = STATE_IDLE;
H A Dspeech_recognizer_impl_android.h59 State state_; member in class:content::SpeechRecognizerImplAndroid
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl_unittest.cc125 state_(state),
129 *state_ = UNDECIDED;
141 if (state_)
142 *state_ = CANCELED;
145 if (state_)
146 *state_ = OKED;
175 state_ = NULL;
194 InterstitialState* state_; member in class:content::__anon7462::TestInterstitialPage
H A Dweb_contents_view_aura_browsertest.cc194 state_(INPUT_EVENT_ACK_STATE_UNKNOWN) {}
203 InputEventAckState last_ack_state() const { return state_; }
212 state_ = state;
233 InputEventAckState state_; member in class:content::InputEventMessageFilterWaitsForAcks
/external/chromium_org/content/child/service_worker/
H A Dweb_service_worker_impl.cc26 state_(handle_ref_->state()),
81 return state_;
95 state_ = new_state;
H A Dweb_service_worker_impl.h61 blink::WebServiceWorkerState state_; member in class:content::WebServiceWorkerImpl
/external/chromium_org/content/common/gpu/media/
H A Dandroid_video_decode_accelerator.cc33 state_ = ERROR; \
75 state_(NO_ERROR),
140 if (state_ == ERROR) {
508 state_ = NO_ERROR;
H A Dandroid_video_decode_accelerator.h113 State state_; member in class:content::AndroidVideoDecodeAccelerator
H A Ddxva_video_decode_accelerator.cc430 state_(kUninitialized),
472 RETURN_AND_NOTIFY_ON_FAILURE((state_ == kUninitialized),
473 "Initialize: invalid state: " << state_, ILLEGAL_STATE, false);
500 state_ = kNormal;
508 RETURN_AND_NOTIFY_ON_FAILURE((state_ == kNormal || state_ == kStopped ||
509 state_ == kFlushing),
510 "Invalid state: " << state_, ILLEGAL_STATE,);
529 RETURN_AND_NOTIFY_ON_FAILURE((state_ != kUninitialized),
530 "Invalid state: " << state_, ILLEGAL_STAT
[all...]
H A Ddxva_video_decode_accelerator.h179 State state_; member in class:content::DXVAVideoDecodeAccelerator
H A Dvaapi_h264_decoder.cc73 state_ = kNeedStreamMetadata;
113 if (state_ == kDecoding)
114 state_ = kAfterReset;
1564 state_ = kError; \
1584 DCHECK_NE(state_, kError);
1593 if (state_ != kNeedStreamMetadata && available_va_surfaces_.empty()) {
1609 if (state_ != kDecoding)
1616 if (state_ == kNeedStreamMetadata) {
1631 state_ = kDecoding;
1649 state_
[all...]
H A Dvaapi_h264_decoder.h225 State state_; member in class:content::VaapiH264Decoder
H A Dvaapi_video_decode_accelerator.cc234 state_(kUninitialized),
291 DCHECK_EQ(state_, kUninitialized);
323 state_ = kIdle;
334 if (state_ == kResetting || state_ == kDestroying)
443 while (input_buffers_.empty() && (state_ == kDecoding || state_ == kIdle)) {
449 switch (state_) {
500 (state_ == kDecoding || state_
[all...]
H A Dvaapi_video_decode_accelerator.h172 // Protects input buffer and surface queues and state_.
174 State state_; member in class:content::VaapiVideoDecodeAccelerator
H A Dvaapi_video_encode_accelerator.cc148 state_(kUninitialized),
182 DCHECK_EQ(state_, kUninitialized);
244 DCHECK_EQ(state_, kUninitialized);
543 if (state_ != kEncoding)
628 DCHECK_NE(state_, kUninitialized);
638 if (state_ != kEncoding || encoder_input_queue_.empty())
706 DCHECK_NE(state_, kUninitialized);
743 DCHECK_NE(state_, kUninitialized);
1043 state_ = state;
H A Dvaapi_video_encode_accelerator.h187 State state_; member in class:content::VaapiVideoEncodeAccelerator
H A Dvideo_decode_accelerator_unittest.cc300 ClientState state_; member in class:content::__anon7618::GLRenderingVDAClient
355 state_(CS_CREATED),
465 CHECK_LT(state_, CS_RESET);
520 if (frames_at_render_ == 0 && state_ == CS_RESETTING) {
617 state_ = new_state;
651 for (int i = state_ + 1; i < CS_MAX; ++i)
H A Dvideo_encode_accelerator_unittest.cc536 ClientState state_; member in class:content::__anon7620::VEAClient
631 : state_(CS_CREATED),
769 ASSERT_EQ(state_, CS_INITIALIZED);
814 if (state_ == CS_FINISHED)
844 DVLOG(4) << "Changing state " << state_ << "->" << new_state;
846 state_ = new_state;
908 if (state_ != CS_ENCODING)
943 if (state_ != CS_ENCODING)

Completed in 422 milliseconds

<<11121314151617181920>>