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

1 2

  /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 54 LOADING
82 state = State.LOADING;
171 state = State.LOADING;
383 (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/av/include/media/
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;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 163 LOADING, // Loader is fetching the group metadata
227 // Just restore from the saved state. No loading.
231 } else if (mStatus == Status.LOADING) {
261 mStatus = Status.LOADING;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 121 * to compile before the loading was finished. Those projects will be recompiled
122 * at the end of the loading.
160 * Called when the targets are loaded (either the SDK finished loading when Eclipse starts,
279 StringBuilder sb = new StringBuilder("Error Loading the SDK:\n");
506 * data is finished loading.
527 // set status to loading
528 bundle.status = LoadStatus.LOADING;
535 // and set the flag to start the loading below
537 } else if (bundle.status == LoadStatus.LOADING) {
550 Job job = new Job(String.format("Loading data for %1$s", target.getFullName()))
    [all...]
  /packages/apps/Email/src/com/android/mail/providers/
UIProvider.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SdkSelectionPage.java 357 if (AdtPlugin.getDefault().getSdkLoadStatus() == LoadStatus.LOADING) {
358 error = "The SDK is still loading; please wait.";
  /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 163 public static final int LOADING = 0;
422 // 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...]

Completed in 661 milliseconds

1 2