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

1 2 3 4 5 6

  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/
ResourceWallpaperInfo.java 44 if (bitmapSource.getLoadingState() == BitmapSource.State.LOADED) {
FileWallpaperInfo.java 42 if (bitmapSource.getLoadingState() == BitmapSource.State.LOADED) {
UriWallpaperInfo.java 39 if (bitmapSource.getLoadingState() == BitmapSource.State.LOADED) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
SdkLoadingTestCase.java 30 * A test case which uses the SDK loaded by the ADT plugin.
88 assertEquals(LoadStatus.LOADED, loadStatus);
  /packages/apps/Dialer/java/com/android/contacts/common/model/
Contact.java 75 * Small version of the contact photo loaded from a blob instead of from a file. If a large
129 mStatus = Status.LOADED;
252 /** @return true if the specified contact is successfully loaded. */
254 return mStatus == Status.LOADED;
335 // If the photo was loaded using the URI, create an entry for the photo
377 /** Contact is successfully loaded */
378 LOADED,
  /packages/apps/Contacts/src/com/android/contacts/model/
Contact.java 52 /** Contact is successfully loaded */
53 LOADED,
88 * Small version of the contact photo loaded from a blob instead of from a file. If a large
146 mStatus = Status.LOADED;
297 * @return true if the specified contact is successfully loaded.
301 return mStatus == Status.LOADED;
429 // If the photo was loaded using the URI, create an entry for the photo
  /packages/apps/WallpaperPicker/src/com/android/photos/
BitmapRegionTileSource.java 139 public enum State { NOT_LOADED, LOADED, ERROR_LOADING };
189 mState = State.LOADED;
194 return mState == State.LOADED;
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageCursor.java 152 mStatus = CursorStatus.LOADED;
161 * Returns true if the cursor is fully loaded. Returns false if the cursor is expected to get
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
WallpaperCropActivity.java 132 if (bitmapSource.getLoadingState() != BitmapSource.State.LOADED) {
219 loadSuccess = req.src.getLoadingState() == BitmapSource.State.LOADED;
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/
BitmapRegionTileSource.java 163 public enum State { NOT_LOADED, LOADED, ERROR_LOADING };
194 mState = State.LOADED;
394 // loaded, the lifecycle is different and interactions are on a different
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerInitializer.java 172 boolean sdkIsLoaded = plugin.getSdkLoadStatus() == LoadStatus.LOADED;
182 // this might be null if the sdk is not yet loaded.
185 // if we are loaded and the target is non null, we create a valid
192 // first make sure the target has loaded its data
212 // if there is no hash string we only show this if the SDK is loaded.
216 // By testing the sdk is loaded, we only show this once in the console.
226 // loaded and therefore we can't get the target yet.
234 // is resolved again after the SDK is loaded.
238 "Unable to resolve target '%s' until the SDK is loaded.",
247 // to be checked for cache validity once the SDK is loaded
    [all...]
LibraryClasspathContainerInitializer.java 318 boolean sdkIsLoaded = plugin.getSdkLoadStatus() == LoadStatus.LOADED;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetData.java 49 * This class contains the data of an Android Target as loaded from the SDK.
326 if (mLayoutBridgeInit == false && mLayoutLibrary.getStatus() == LoadStatus.LOADED) {
Sdk.java 169 * Called when the targets are loaded (either the SDK finished loading when Eclipse starts,
486 * If the project has not yet been loaded, then it is loaded.
552 if (AdtPlugin.getDefault().getSdkLoadStatus() == LoadStatus.LOADED) {
583 * @return the target that was loaded.
659 * <p/> The data is loaded in a separate {@link Job}, and opened editors will be notified
663 * <p/>The return value is non-null only if the target data has already been loaded (and in this
666 * @param project an optional project to be recompiled when the target data is loaded.
667 * If the target is already loaded, nothing happens.
668 * @return The load status if the target data is already loaded
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationChooser.java 125 /** Serialized state to use when initializing the configuration after the SDK is loaded */
197 setVisible(false); // Delayed until the targets are loaded
481 * loaded (or reloaded as the SDK/target changes).
519 // only attempt to do anything if the SDK and targets are loaded.
522 if (sdkStatus == LoadStatus.LOADED) {
528 if (targetStatus == LoadStatus.LOADED) {
692 * Responds to the XML model being loaded, either the first time or when the
699 * If the SDK or target are not loaded, nothing will happen (but the method
715 // only attempt to do anything if the SDK and targets are loaded.
717 if (sdkStatus == LoadStatus.LOADED) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 334 if (sdk.checkAndLoadTargetData(target, javaProject) != LoadStatus.LOADED) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/layoutRendering/
ApiDemosRenderingTest.java 206 if (layoutLib.getStatus() != LoadStatus.LOADED) {
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuMpPei/Ia32/
MpFuncs.asm 220 ; update the other CPU's switch state to LOADED
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 122 if (bitmapSource.getLoadingState() != BitmapSource.State.LOADED) {
172 if (bitmapSource.getLoadingState() == BitmapSource.State.LOADED) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
AdtProjectTest.java 114 assertSame(LoadStatus.LOADED, sdkStatus);
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuMpPei/X64/
MpFuncs.asm 262 ; update the other CPU's switch state to LOADED
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
UIProvider.java     [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /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 156 /** Project to update once the SDK is loaded.
159 /** Project to check validity of cache vs actual once the SDK is loaded.
    [all...]

Completed in 1036 milliseconds

1 2 3 4 5 6