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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionStateMachine.h 68 : m_nextState(SQLTransactionState::Idle)
69 , m_requestedState(SQLTransactionState::Idle)
83 ASSERT(m_nextState == SQLTransactionState::Idle);
84 ASSERT(m_requestedState != SQLTransactionState::Idle);
86 m_requestedState = SQLTransactionState::Idle;
92 ASSERT(SQLTransactionState::End < SQLTransactionState::Idle);
93 while (m_nextState > SQLTransactionState::Idle) {
SQLTransactionState.h 35 Idle,
SQLTransactionStateMachine.cpp 40 case SQLTransactionState::Idle:
41 return "idle";
SQLTransactionBackend.cpp 62 // 1. Idle .
96 // 1. SQLTransactionState::Idle
178 // physically, the transition mechanism uses the Idle state (both in the frontend
186 // - waiting quietly is Idle. Not doing any work.
193 // Idle.
201 // to RunStatements, and then itself transits to Idle.
204 // - waiting quietly in Idle.
209 // - waiting quietly is Idle. Not doing any work.
216 // their Idle states. This means their m_nextState is set to Idle, but they neve
    [all...]
SQLTransaction.cpp 109 &SQLTransaction::unreachableState, // 1. idle
178 // must be waiting in the idle state waiting for this state to finish.
253 ASSERT(m_nextState != SQLTransactionState::Idle);
255 return SQLTransactionState::Idle;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextTrackLoader.h 63 enum State { Idle, Loading, Finished, Failed };
TextTrackLoader.cpp 46 , m_state(Idle)
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTimeContainer.h 78 Idle,
SMILTimeContainer.cpp 58 , m_frameSchedulingState(Idle)
182 ASSERT(m_frameSchedulingState == Idle || m_frameSchedulingState == SynchronizeAnimations);
275 m_frameSchedulingState = Idle;
291 m_frameSchedulingState = Idle;
294 m_frameSchedulingState = Idle;
347 m_frameSchedulingState = Idle;
  /external/chromium_org/third_party/WebKit/public/platform/
WebApplicationCacheHost.h 54 Idle,
  /external/chromium_org/content/child/appcache/
appcache_frontend_impl.cc 94 COMPILE_ASSERT((int)WebApplicationCacheHost::Idle ==
95 (int)APPCACHE_STATUS_IDLE, Idle);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationPlayer.h 52 Idle,
AnimationPlayerTest.cpp 758 EXPECT_EQ(AnimationPlayer::Idle, player->playStateInternal());
773 EXPECT_EQ(AnimationPlayer::Idle, player->playStateInternal());
819 EXPECT_EQ(AnimationPlayer::Idle, player->playStateInternal());
838 EXPECT_EQ(AnimationPlayer::Idle, player->playStateInternal());
854 EXPECT_EQ(AnimationPlayer::Idle, player->playStateInternal());
870 EXPECT_EQ(AnimationPlayer::Idle, player->playStateInternal());
876 EXPECT_EQ(AnimationPlayer::Idle, player->playStateInternal());
882 EXPECT_EQ(AnimationPlayer::Idle, player->playStateInternal());
886 EXPECT_EQ(AnimationPlayer::Idle, player->playStateInternal());
AnimationPlayer.cpp 392 case Idle:
393 return "idle";
411 return Idle;
  /external/chromium_org/third_party/webrtc/base/
dbus.cc 172 // Add an idle source and let the gmainloop quit on idle.
175 g_source_set_callback(idle_source_, &Idle, this, NULL);
283 // Handles callback on Idle. We only add this source when ready to stop.
284 static gboolean Idle(gpointer data) {
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_thinning_unittest.cc 75 TEST_F(ScrollbarAnimationControllerThinningTest, Idle) {
302 // thumb starts expanding it doesn't first narrow to the idle thinness.
  /external/chromium_org/third_party/WebKit/Source/web/
AssertMatchingEnums.cpp 320 COMPILE_ASSERT_MATCHING_ENUM(WebApplicationCacheHost::Idle, ApplicationCacheHost::IDLE);
    [all...]

Completed in 881 milliseconds