/external/chromium/chrome/browser/extensions/ |
extension_idle_apitest.cc | 9 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, Idle) { 10 ASSERT_TRUE(RunExtensionTest("idle")) << message_;
|
/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 | 63 // 1. Idle . 97 // 1. SQLTransactionState::Idle 179 // physically, the transition mechanism uses the Idle state (both in the frontend 187 // - waiting quietly is Idle. Not doing any work. 194 // Idle. 202 // to RunStatements, and then itself transits to Idle. 205 // - waiting quietly in Idle. 210 // - waiting quietly is Idle. Not doing any work. 217 // their Idle states. This means their m_nextState is set to Idle, but they neve [all...] |
SQLTransaction.cpp | 97 &SQLTransaction::unreachableState, // 1. idle 168 // must be waiting in the idle state waiting for this state to finish. 243 ASSERT(m_nextState != SQLTransactionState::Idle); 245 return SQLTransactionState::Idle;
|
/external/chromium_org/third_party/WebKit/Source/modules/notifications/ |
NotificationBase.cpp | 44 , m_state(Idle) 57 if (m_state == Idle) { 73 case Idle:
|
NotificationBase.h | 110 Idle = 0,
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
TextTrackLoader.h | 62 enum State { Idle, Loading, Finished, Failed };
|
TextTrackLoader.cpp | 45 , m_state(Idle)
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebApplicationCacheHost.h | 55 Idle,
|
WebInputElement.h | 48 Idle,
|
/packages/apps/Nfc/nci/jni/ |
Pn544Interop.cpp | 80 ** Description: Start polling when activation state is idle. 99 if (state == NfcTag::Idle)
|
NfcTag.h | 34 enum ActivationState {Idle, Sleep, Active}; 119 ** Description: What is the current state: Idle, Sleep, or Activated. 121 ** Returns: Idle, Sleep, or Activated. 131 ** Description: Set the current state: Idle or Sleep.
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
TextControlInnerElements.cpp | 283 , m_state(Idle) 292 if (m_state != Idle) 350 case Idle: 396 setState(Idle); 445 if (m_state != Idle) 456 if (m_state != Idle)
|
TextControlInnerElements.h | 106 Idle,
|
/external/chromium_org/content/child/appcache/ |
appcache_frontend_impl.cc | 93 COMPILE_ASSERT((int)WebApplicationCacheHost::Idle == 94 (int)appcache::IDLE, Idle);
|
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.ascend | 63 ATTRIBUTE Ascend-TS-Idle-Limit 169 integer 64 ATTRIBUTE Ascend-TS-Idle-Mode 170 integer 93 ATTRIBUTE Ascend-Token-Idle 199 integer 136 ATTRIBUTE Ascend-Idle-Limit 244 integer 146 ATTRIBUTE Ascend-MPP-Idle-Percent 254 integer 190 VALUE Ascend-TS-Idle-Mode TS-Idle-None 0 191 VALUE Ascend-TS-Idle-Mode TS-Idle-Input 1 192 VALUE Ascend-TS-Idle-Mode TS-Idle-Input-Output [all...] |
dictionary | 70 ATTRIBUTE Idle-Timeout 28 integer 198 VALUE Acct-Terminate-Cause Idle-Timeout 4
|
/external/chromium_org/content/renderer/ |
input_tag_speech_dispatcher.cc | 141 if (input_element->getSpeechInputState() == WebInputElement::Idle) {
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/media/ |
MediaPlayer.h | 143 enum NetworkState { Empty, Idle, Loading, Loaded, FormatError, NetworkError, DecodeError };
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
dbus.cc | 189 // Add an idle source and let the gmainloop quit on idle. 192 g_source_set_callback(idle_source_, &Idle, this, NULL); 300 // Handles callback on Idle. We only add this source when ready to stop. 301 static gboolean Idle(gpointer data) {
|
/external/chromium/chrome/browser/resources/net_internals/ |
socketpoolwrapper.js | 83 tablePrinter.addHeaderCell('Idle'); 131 tablePrinter.addHeaderCell('Idle');
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebInputElement.cpp | 207 return Idle;
|
AssertMatchingEnums.cpp | 313 COMPILE_ASSERT_MATCHING_ENUM(WebApplicationCacheHost::Idle, ApplicationCacheHost::IDLE); 403 COMPILE_ASSERT_MATCHING_ENUM(WebInputElement::Idle, InputFieldSpeechButtonElement::Idle); 422 COMPILE_ASSERT_MATCHING_ENUM(WebMediaPlayer::NetworkStateIdle, MediaPlayer::Idle); [all...] |