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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTrackElement.idl 34 const unsigned short LOADING = 1;
HTMLTrackElement.h 45 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 41 const unsigned short LOADING = 1;
FileReader.h 62 LOADING = 1,
118 // Internal loading state, which could differ from ReadyState as it's
FileReader.cpp 225 // If multiple concurrent read methods are called on the same FileReader, InvalidStateError should be thrown when the state is LOADING.
226 if (m_state == LOADING) {
242 m_state = LOADING;
275 // 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.
334 // 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 201 if (state_ == LOADING)
206 // Kick off loading the DB.
218 state_ = LOADING;
346 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 52 const unsigned short LOADING = 3;
XMLHttpRequest.cpp 224 if (m_error || (m_state != LOADING && m_state != DONE))
335 if (m_error || (m_state != LOADING && m_state != DONE))
354 if (m_state >= LOADING) {
355 exceptionState.throwDOMException(InvalidStateError, "The response type cannot be set if the object's state is LOADING or DONE.");
428 if (m_state != LOADING) {
429 changeState(LOADING);
    [all...]
XMLHttpRequest.h 74 LOADING = 3,
  /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 38 // Icon used while loading, or if a specific favicon can't be found.
76 LOADING,
98 load_state_ = LOADING;
  /packages/apps/Email/src/com/android/email/provider/
EmailConversationCursor.java 82 UIProvider.CursorStatus.LOADING);
94 UIProvider.CursorStatus.LOADING);
  /external/chromium_org/chrome/browser/sessions/
persistent_tab_restore_service.cc 72 LOADING = 1 << 2,
74 // Indicates we finished loading the last tabs (but not necessarily the last
78 // Indicates we finished loading the last session (but not necessarily the
205 // loading the entries in |staging_entries_| are added to entries and
229 // results from both us and the session restore service have finished loading
233 // Used when loading previous tabs/session and open tabs/session.
327 load_state_ = (LOADING | LOADED_LAST_SESSION | LOADED_LAST_TABS);
335 load_state_ = LOADING | LOADED_LAST_SESSION;
337 load_state_ = LOADING;
366 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;
143 case cvox.LibLouis.InstanceState.LOADING:
194 * @param {Event} e Event dispatched after loading.
209 * @param {Event} e Event dispatched after loading failure.
  /external/chromium_org/components/gcm_driver/
gcm_client_impl.h 122 // GCM store loading is in progress.
123 LOADING,
gcm_client_impl.cc 300 // Once the loading is completed, the check-in will be initiated.
303 state_ = LOADING;
307 DCHECK_EQ(LOADING, state_);
689 case GCMClientImpl::LOADING:
690 return "LOADING";
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 131 * to compile before the loading was finished. Those projects will be recompiled
132 * at the end of the loading.
169 * Called when the targets are loaded (either the SDK finished loading when Eclipse starts,
295 String.format("%s when loading the SDK:\n",
662 * data is finished loading.
684 // set status to loading
685 bundle.status = LoadStatus.LOADING;
692 // and set the flag to start the loading below
694 } else if (bundle.status == LoadStatus.LOADING) {
707 Job job = new Job(String.format("Loading data for %1$s", target.getFullName()))
    [all...]
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.h 170 LOADING,
497 // Changes the function of the whole dialog. Currently this can show a loading
631 // A view that overlays |this| (for "loading..." messages).
635 // from changing while the loading shield is showing.

Completed in 872 milliseconds

1 2 3