HomeSort by relevance Sort by last modified time
    Searched refs:LOADING (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/chromium_org/content/renderer/fetchers/
web_url_loader_client_impl.cc 16 , status_(LOADING) {
67 DCHECK(status_ == LOADING);
web_url_loader_client_impl.h 24 LOADING,
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTrackElement.idl 34 const unsigned short LOADING = 1;
HTMLTrackElement.h 46 enum ReadyState { NONE = 0, LOADING = 1, LOADED = 2, TRACK_ERROR = 3 };
HTMLTrackElement.cpp 172 // 6. Set the text track readiness state to loading.
173 setReadyState(HTMLTrackElement::LOADING);
240 COMPILE_ASSERT(HTMLTrackElement::LOADING == static_cast<HTMLTrackElement::ReadyState>(TextTrack::Loading), TextTrackEnumLoadingIsWrong_ShouldBe_HTMLTrackElementEnumLOADING);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReader.idl 42 const unsigned short LOADING = 1;
FileReader.h 61 LOADING = 1,
116 // Internal loading state, which could differ from ReadyState as it's
FileReader.cpp 256 return m_state == LOADING;
299 // If multiple concurrent read methods are called on the same FileReader, InvalidStateError should be thrown when the state is LOADING.
300 if (m_state == LOADING) {
321 m_state = LOADING;
354 // Schedule to have the abort done later since abort() might be called from the event handler and we do not want the resource loading code to be in the stack.
413 // if we're still loading (therefore we need abort process) or not.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
SdkLoadingTestCase.java 71 LoadStatus loadStatus = LoadStatus.LOADING;
75 for (int i=0; i < maxWait && loadStatus == LoadStatus.LOADING; i++) {
  /external/chromium_org/content/browser/media/
webrtc_identity_store_backend.h 91 LOADING,
111 // The persistent storage loading state.
webrtc_identity_store_backend.cc 202 if (state_ == LOADING)
207 // Kick off loading the DB.
219 state_ = LOADING;
347 if (state_ != LOADING)
  /external/chromium_org/remoting/webapp/
xhr_proxy.js 88 remoting.XMLHttpRequestProxy.prototype.LOADING = 3;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.idl 53 const unsigned short LOADING = 3;
XMLHttpRequest.cpp 199 if (m_error || (m_state != LOADING && m_state != DONE))
334 if (m_error || (m_state != LOADING && m_state != DONE))
343 if (m_error || (m_state != LOADING && m_state != DONE))
371 if (m_state >= LOADING) {
372 exceptionState.throwDOMException(InvalidStateError, "The response type cannot be set if the object's state is LOADING or DONE.");
449 if (m_state != LOADING) {
450 changeState(LOADING);
    [all...]
XMLHttpRequest.h 77 LOADING = 3,
294 // True iff the ongoing resource loading is using the downloadToFile
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CommonControllerOverlay.java 50 LOADING
76 mState = State.LOADING;
170 mState = State.LOADING;
324 (mState != State.LOADING && mState != State.ERROR &&
  /frameworks/av/include/media/
SoundPool.h 54 enum sample_state { UNLOADED, LOADING, READY, UNLOADING };
66 void startLoad() { mState = LOADING; }
  /external/chromium_org/chrome/browser/ui/search_engines/
template_url_table_model.cc 31 // Icon used while loading, or if a specific favicon can't be found.
69 LOADING,
89 load_state_ = LOADING;
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailConversationCursor.java 81 UIProvider.CursorStatus.LOADING);
93 UIProvider.CursorStatus.LOADING);
  /external/chromium_org/chrome/browser/sessions/
persistent_tab_restore_service.cc 71 LOADING = 1 << 2,
73 // Indicates we finished loading the last tabs (but not necessarily the last
77 // Indicates we finished loading the last session (but not necessarily the
204 // loading the entries in |staging_entries_| are added to entries and
228 // results from both us and the session restore service have finished loading
232 // Used when loading previous tabs/session and open tabs/session.
326 load_state_ = (LOADING | LOADED_LAST_SESSION | LOADED_LAST_TABS);
334 load_state_ = LOADING | LOADED_LAST_SESSION;
336 load_state_ = LOADING;
365 return !(load_state_ & (NOT_LOADED | LOADING));
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/liblouis_nacl/
liblouis.js 67 * Describes the loading state of the instance.
72 LOADING: 1,
105 this.instanceState_ = cvox.LibLouis.InstanceState.LOADING;
144 case cvox.LibLouis.InstanceState.LOADING:
195 * @param {Event} e Event dispatched after loading.
210 * @param {Event} e Event dispatched after loading failure.
  /external/chromium_org/components/gcm_driver/
gcm_client_impl.h 129 // GCM store loading is in progress.
130 LOADING,
gcm_client_impl.cc 293 // Once the loading is completed, the check-in will be initiated.
296 state_ = LOADING;
300 DCHECK_EQ(LOADING, state_);
762 case GCMClientImpl::LOADING:
763 return "LOADING";
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentTasksLoader.java 76 private enum State { LOADING, LOADED, CANCELLED };
259 // additional optimization when we have software system buttons - start loading the recent
423 mState = State.LOADING;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 165 LOADING, // Loader is fetching the group metadata
229 // Just restore from the saved state. No loading.
233 } else if (mStatus == Status.LOADING) {
263 mStatus = Status.LOADING;
    [all...]

Completed in 611 milliseconds

1 2 3