HomeSort by relevance Sort by last modified time
    Searched refs:thumbnail (Results 26 - 50 of 156) sorted by null

12 3 4 5 6 7

  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/recents/model/
HighResThumbnailLoaderTest.java 118 mTask.thumbnail = new ThumbnailData();
119 mTask.thumbnail.reducedResolution = false;
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
FetchDownloadsLoader.java 89 Bitmap thumbnail = local
93 result.thumbnails.put(currentFile, thumbnail);
  /external/piex/src/
piex_types.h 80 // Optional data to find the preview and thumbnail image to handle them
81 // correctly. A thumbnail is typically 160x120 pixel small and usually
85 Image thumbnail; member in struct:piex::PreviewImageData
  /packages/apps/Email/provider_src/com/android/email/provider/
AttachmentProvider.java 56 * content://com.android.mail.attachmentprovider/acct#/attach#/THUMBNAIL/width#/height#
98 * - If thumbnail Uri, always returns "image/png" (even if there's no attachment)
134 * and "thumbnail", which attempts to generate a thumbnail image.
138 * TODO: The thumbnail format returns null for its failure cases, instead of throwing
197 Bitmap thumbnail = createThumbnail(type, in); local
198 if (thumbnail == null) {
201 thumbnail = Bitmap.createScaledBitmap(thumbnail, width, height, true);
203 thumbnail.compress(Bitmap.CompressFormat.PNG, 100, out)
    [all...]
  /frameworks/support/compat/java/android/support/v4/app/
ActivityOptionsCompat.java 124 * Create an ActivityOptions specifying an animation where a thumbnail is
130 * those bounds will be filled in for you based on the initial thumbnail
133 * @param source The View that this thumbnail is animating from. This
135 * @param thumbnail The bitmap that will be shown as the initial thumbnail
143 Bitmap thumbnail, int startX, int startY) {
146 source, thumbnail, startX, startY));
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/
LiveWallpaperInfo.java 38 public LiveWallpaperInfo(Drawable thumbnail, WallpaperInfo info, Intent intent) {
39 mThumbnail = thumbnail;
  /packages/apps/Gallery2/src/com/android/photos/adapters/
PhotoThumbnailAdapter.java 49 ImageView iv = (ImageView) view.findViewById(R.id.thumbnail);
  /packages/apps/LegacyCamera/src/com/android/camera/
Thumbnail.java 44 public class Thumbnail {
45 private static final String TAG = "Thumbnail";
52 // whether this thumbnail is read from file
55 // Camera, VideoCamera, and Panorama share the same thumbnail. Use sLock
59 public Thumbnail(Uri uri, Bitmap bitmap, int orientation) {
83 // We only rotate the thumbnail once even if we get OOM.
96 Log.w(TAG, "Failed to rotate thumbnail", t);
127 public static Thumbnail loadFrom(File file) {
150 Thumbnail thumbnail = createThumbnail(uri, bitmap, 0) local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/
JpegImageBackendImageSaver.java 54 * and just routes this image artifact as the thumbnail and to remote devices.
75 public void saveAndCloseImage(ImageProxy image, Optional<ImageProxy> thumbnail,
77 // TODO: Use thumbnail to speed up RGB thumbnail creation whenever
79 if (thumbnail.isPresent()) {
80 thumbnail.get().close();
122 // Just start the thumbnail now, since there's no earlier event.
154 /** Factor to downsample full-size JPEG image for use in thumbnail bitmap. */
YuvImageBackendImageSaver.java 53 /** Progress for JPEG saving once the intermediate thumbnail is done. */
74 public void saveAndCloseImage(ImageProxy image, Optional<ImageProxy> thumbnail,
76 // TODO Use thumbnail to speedup RGB thumbnail creation whenever
78 if (thumbnail.isPresent()) {
79 thumbnail.get().close();
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaThumbRequest.java 100 // Only requests from Thumbnail API has this group_id parameter. In other cases,
108 Uri updateDatabase(Bitmap thumbnail) {
123 values.put(Images.Thumbnails.WIDTH, thumbnail.getWidth());
124 values.put(Images.Thumbnails.HEIGHT, thumbnail.getHeight());
134 * Check if the corresponding thumbnail and mini-thumb have been created
137 * created, MINI_KIND thumbnail is stored in JPEG file and MICRO_KIND
138 * thumbnail is stored in a random access file (MiniThumbFile).
172 // If we can't retrieve the thumbnail, first check if there is one
186 Log.w(TAG, "Can't create mini thumbnail for " + mPath);
238 Log.w(TAG, "can't create bitmap for thumbnail.")
    [all...]
  /external/ImageMagick/MagickCore/
effect.c 2266 *thumbnail; local
    [all...]
  /frameworks/base/core/java/android/app/
ActivityOptions.java 112 * Bitmap for thumbnail animation.
118 * Start X position of thumbnail animation.
124 * Start Y position of thumbnail animation.
461 * Create an ActivityOptions specifying an animation where a thumbnail
468 * thumbnail location and size provided here.
470 * @param source The View that this thumbnail is animating from. This
472 * @param thumbnail The bitmap that will be shown as the initial thumbnail
480 Bitmap thumbnail, int startX, int startY) {
481 return makeThumbnailScaleUpAnimation(source, thumbnail, startX, startY, null)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
SystemServicesProxy.java 328 // Get the dummy thumbnail width/heights
695 * Cancels the current thumbnail transtion to/from Recents for the given task id.
707 /** Returns the top task thumbnail for the given task id */
711 // If we are mocking, then just return a dummy thumbnail
714 thumbnailData.thumbnail = Bitmap.createBitmap(mDummyThumbnailWidth,
716 thumbnailData.thumbnail.eraseColor(0xff333333);
721 if (thumbnailData.thumbnail != null && !ActivityManager.ENABLE_TASK_SNAPSHOTS) {
722 thumbnailData.thumbnail.setHasAlpha(false);
723 // We use a dumb heuristic for now, if the thumbnail is purely transparent in the top
724 // left pixel, then assume the whole thumbnail is transparent. Generally, prope
764 Bitmap thumbnail = taskThumbnail.mainThumbnail; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
RecentsTaskLoadPlan.java 193 ThumbnailData thumbnail = loader.getAndUpdateThumbnail(taskKey, local
206 thumbnail, title, titleDescription, dismissDescription, appInfoDescription,
257 task.thumbnail = loader.getAndUpdateThumbnail(taskKey,
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
ImageUtils.java 50 * Normally, this test will fail when there is a missing thumbnail. However, when
53 * the test repeatedly to get to each new render assertion generating its thumbnail.
65 BufferedImage thumbnail = scale(image, scale, scale); local
69 String message = "Unable to load golden thumbnail: " + relativePath + "\n";
70 message = saveImageAndAppendMessage(thumbnail, message, relativePath);
80 assertImageSimilar(relativePath, goldenImage, thumbnail, MAX_PERCENT_DIFFERENCE);
233 // When creating a thumbnail, using the above code doesn't work very well;
252 // So, now we *start* the thumbnail operation by resizing from width 1000 to
318 * Saves the generated thumbnail image and appends the info message to an initial message
329 initialMessage += "Thumbnail for current rendering stored at " + output.getPath()
    [all...]
  /art/tools/ahat/src/
Summarizer.java 106 // Annotate bitmaps with a thumbnail.
108 String thumbnail = ""; local
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
ActivityAnimations.java 74 new BitmapDrawable(resources, pictureData.thumbnail);
100 * When the user clicks a thumbnail, bundle up information about it and launch the
107 // Interesting data to pass across are the thumbnail size/location, the
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 222 * @return the thumbnail {@link Image} of required size for given "big" {@link Image}, centered or
234 // create "thumbnail" Image with required size
235 Image thumbnail = new Image(null, minWidth, minHeight); local
236 GC gc = new GC(thumbnail);
242 // recreate "thumbnail" Image with transparent pixel
244 ImageData thumbnailData = thumbnail.getImageData();
248 thumbnail.dispose();
  /packages/apps/Camera2/src/com/android/camera/app/
AppController.java 310 * Starts the post-capture animation with the given thumbnail.
312 * @param thumbnail The thumbnail for the animation.
314 public void startPostCaptureAnimation(Bitmap thumbnail);
  /external/ImageMagick/coders/
Android.mk 120 thumbnail.c\
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifData.java 56 * Gets the compressed thumbnail. Returns null if there is no compressed
57 * thumbnail.
66 * Sets the compressed thumbnail.
68 protected void setCompressedThumbnail(byte[] thumbnail) {
69 mThumbnail = thumbnail;
73 * Returns true it this header contains a compressed thumbnail.
194 * Removes the thumbnail and its related tags. IFD1 will be removed.
  /frameworks/base/services/core/java/com/android/server/wm/
WindowLayersController.java 265 // function to set the thumbnail layer for w.AppToken
268 if (w.mAppToken.mAppAnimator.thumbnail != null
271 w.mAppToken.mAppAnimator.thumbnail.setLayer(highestLayer + 1);
  /packages/apps/Camera2/src/com/android/camera/data/
PhotoItem.java 77 * thumbnail loading.
200 // tiny thumbnail to prevent un-intended "flash of low resolution image"
207 // If we do not have a placeholder bitmap, render a thumbnail with
210 .thumbnail(renderTinySize(uri));
216 .thumbnail(renderScreenSize(uri));
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifData.java 56 * Gets the compressed thumbnail. Returns null if there is no compressed
57 * thumbnail.
66 * Sets the compressed thumbnail.
68 protected void setCompressedThumbnail(byte[] thumbnail) {
69 mThumbnail = thumbnail;
73 * Returns true it this header contains a compressed thumbnail.
194 * Removes the thumbnail and its related tags. IFD1 will be removed.

Completed in 3949 milliseconds

12 3 4 5 6 7