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

  /sdk/ide_common/src/com/android/ide/common/sdk/
LoadStatus.java 20 * Enum for loading status of various SDK parts.
23 LOADING, LOADED, FAILED;
  /external/webkit/Source/WebCore/fileapi/
FileReader.idl 42 const unsigned short LOADING = 1;
FileReader.h 62 LOADING = 1,
FileReader.cpp 152 // 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.
239 return LOADING;
  /external/webkit/Source/WebCore/storage/
IDBRequest.idl 45 const unsigned short LOADING = 1;
IDBRequest.cpp 57 , m_readyState(LOADING)
113 ASSERT(m_readyState == LOADING || m_readyState == DONE);
119 ASSERT(m_readyState == LOADING);
131 m_readyState = LOADING;
148 if (m_readyState != LOADING) {
IDBRequest.h 60 LOADING = 1,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
SdkTestCase.java 72 LoadStatus loadStatus = LoadStatus.LOADING;
76 for (int i=0; i < maxWait && loadStatus == LoadStatus.LOADING; i++) {
  /external/chromium/webkit/glue/media/
buffered_data_source_unittest.cc 42 LOADING
427 InitializeDataSource(kHttpUrl, net::OK, true, 1024, LOADING);
437 InitializeDataSource(kHttpUrl, net::OK, true, -1, LOADING);
442 InitializeDataSource(kHttpUrl, net::OK, false, 1024, LOADING);
449 LOADING);
455 InitializeDataSource(kHttpUrl, net::OK, false, -1, LOADING);
460 InitializeDataSource(kHttpUrl, net::OK, true, 25, LOADING);
472 InitializeDataSource(kHttpUrl, net::OK, true, 1024, LOADING);
481 InitializeDataSource(kHttpUrl, net::OK, true, 1024, LOADING);
488 InitializeDataSource(kHttpUrl, net::OK, true, 25, LOADING);
    [all...]
buffered_resource_loader_unittest.cc 56 LOADING
550 // TODO(hclam): add unit test for defer loading.
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MovieControllerOverlay.java 56 LOADING
84 state = State.LOADING;
167 state = State.LOADING;
367 (state != State.LOADING && state != State.ERROR &&
  /external/webkit/Source/WebCore/xml/
XMLHttpRequest.idl 54 const unsigned short LOADING = 3;
XMLHttpRequest.h 57 LOADING = 3,
XMLHttpRequest.cpp 784 // out. But it is protected from GC while loading, so this
    [all...]
  /frameworks/base/media/jni/soundpool/
SoundPool.h 52 enum sample_state { UNLOADED, LOADING, READY, UNLOADING };
64 void startLoad() { mState = LOADING; }
  /external/chromium/chrome/browser/sessions/
tab_restore_service.h 185 LOADING = 1 << 2,
187 // Indicates we finished loading the last tabs (but not necessarily the
191 // Indicates we finished loading the last session (but not necessarily the
297 // loading the entries in staging_entries_ are added to entries_ and
330 // Used when loading previous tabs/session.
335 // loading LoadStateChanged is invoked, which adds these entries to
tab_restore_service.cc 421 load_state_ = LOADING;
    [all...]
  /external/chromium/chrome/browser/ui/search_engines/
template_url_table_model.cc 32 // Icon used while loading, or if a specific favicon can't be found.
71 LOADING,
93 load_state_ = LOADING;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SdkSelectionPage.java 256 if (AdtPlugin.getDefault().getSdkLoadStatus() == LoadStatus.LOADING) {
257 error = "The SDK is still loading; please wait.";
  /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 98 * to compile before the loading was finished. Those projects will be recompiled
99 * at the end of the loading.
137 * Called when the targets are loaded (either the SDK finished loading when Eclipse starts,
250 StringBuilder sb = new StringBuilder("Error Loading the SDK:\n");
458 * data is finished loading.
479 // set status to loading
480 bundle.status = LoadStatus.LOADING;
487 // and set the flag to start the loading below
489 } else if (bundle.status == LoadStatus.LOADING) {
502 Job job = new Job(String.format("Loading data for %1$s", target.getFullName()))
    [all...]
  /sdk/ide_common/src/com/android/ide/common/rendering/
LayoutLibrary.java 87 /** Status of the layoutlib.jar loading */
107 * Returns the {@link LoadStatus} of the loading of the layoutlib jar file.
131 * If loading failed {@link #getStatus()} will reflect this, and {@link #getBridge()} will
140 LoadStatus status = LoadStatus.LOADING;
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 167 public static final int LOADING = 0;
423 // Read state from savedState. No loading involved here
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 154 private LoadStatus mSdkIsLoaded = LoadStatus.LOADING;
    [all...]

Completed in 2744 milliseconds