/external/libexif/contrib/examples/ |
thumbnail.c | 2 * libexif example program to extract an EXIF thumbnail from an image 18 printf("Extracts a thumbnail from the given EXIF image.\n"); 37 /* Make sure the image had a thumbnail before trying to write it */ 42 /* Try to create a unique name for the thumbnail file */ 48 /* Write the thumbnail image to the file */ 51 printf("Wrote thumbnail to %s\n", thumb_name); 58 printf("No EXIF thumbnail in file %s\n", argv[1]);
|
Makefile.am | 2 check_PROGRAMS = photographer thumbnail write-exif
|
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/ |
PictureData.java | 24 Bitmap thumbnail; field in class:PictureData 26 public PictureData(int resourceId, String description, Bitmap thumbnail) { 29 this.thumbnail = thumbnail;
|
/packages/wallpapers/NoiseField/res/xml/ |
wallpaper.xml | 5 android:thumbnail="@drawable/wallpaper_thumb" />
|
/cts/tests/tests/app/src/android/app/cts/ |
ActivityManagerRunningTaskInfoTest.java | 34 mRunningTaskInfo.thumbnail = null; 58 assertNull(values.thumbnail); 61 // test thumbnail is not null 62 mRunningTaskInfo.thumbnail = Bitmap.createBitmap(480, 320, 69 assertNotNull(values.thumbnail); 70 assertEquals(320, values.thumbnail.getHeight()); 71 assertEquals(480, values.thumbnail.getWidth()); 72 assertEquals(Bitmap.Config.RGB_565, values.thumbnail.getConfig()); 86 assertNull(values.thumbnail); 89 // test thumbnail is not nul [all...] |
LauncherActivity_IconResizerTest.java | 50 Drawable thumbNail = ir.createIconThumbnail(d); 51 assertNotNull(thumbNail); 52 // The size of the thumbnail is defined by inner R resource file 54 assertTrue(thumbNail.getIntrinsicHeight() > 0); 55 assertTrue(thumbNail.getIntrinsicWidth() > 0);
|
/packages/apps/Browser/src/com/android/browser/ |
BrowserBookmarksAdapter.java | 96 if (item.thumbnail == null || !item.has_thumbnail) { 99 thumb.setImageDrawable(item.thumbnail); 111 Bitmap thumbnail = item.thumbnail != null ? item.thumbnail.getBitmap() : null; local 112 thumbnail = BrowserBookmarksPage.getBitmap(c, 113 BookmarksLoader.COLUMN_INDEX_THUMBNAIL, thumbnail); 114 item.has_thumbnail = thumbnail != null; 115 if (thumbnail != null 116 && (item.thumbnail == null || item.thumbnail.getBitmap() != thumbnail)) [all...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
FileImageRequest.java | 48 // Before using the FileInputStream, check if the Exif has a thumbnail that we can use. 50 byte[] thumbnail = null; 54 thumbnail = exif.getThumbnail(); 60 if (thumbnail != null) { 65 BitmapFactory.decodeByteArray(thumbnail, 0, thumbnail.length, options); 76 // the thumbnail itself but at least on some phones, the thumbnail 88 return BitmapFactory.decodeByteArray(thumbnail, 0, thumbnail.length [all...] |
/external/slf4j/slf4j-site/src/site/images.src/ |
concrete-bindings.odg | |
follow_us.odg | |
legacy.odg | |
/external/sonic/doc/ |
sonic.odt | |
/external/sonivox/docs/ |
EAS_Library_Integration_Guide.odt | |
EASLibrary3_5.odt | |
EAS_API_Reference.odt | |
JET_Programming_Manual.odt | |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
TaskViewThumbnail.java | 41 * The task thumbnail view. It implements an image view that allows for animating the dim and 42 * alpha of the thumbnail image. 57 // Thumbnail alpha 69 // Task bar clipping, the top of this thumbnail can be clipped against the opaque header 70 // bar that overlaps this thumbnail 74 // Visibility optimization, if the thumbnail height is less than the height of the header 75 // bar for the task view, then just mark this thumbnail view as invisible 118 // Draw the thumbnail with the rounded corners 124 /** Sets the thumbnail to a given bitmap. */ 139 /** Updates the paint to draw the thumbnail. * [all...] |
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/ |
LiveWallpaperListAdapter.java | 105 holder.thumbnail = (ImageView) convertView.findViewById(R.id.thumbnail); 112 if (holder.thumbnail != null) { 113 holder.thumbnail.setImageDrawable(wallpaperInfo.thumbnail); 118 if (holder.thumbnail == null) { 119 holder.title.setCompoundDrawablesWithIntrinsicBounds(null, wallpaperInfo.thumbnail, 128 public Drawable thumbnail; field in class:LiveWallpaperListAdapter.LiveWallpaperInfo 135 ImageView thumbnail; field in class:LiveWallpaperListAdapter.ViewHolder 199 Bitmap thumbnail = Bitmap.createBitmap(thumbWidth, thumbHeight local [all...] |
/packages/apps/Camera2/src/com/android/camera/widget/ |
RoundedThumbnailView.java | 46 * A view that shows a pop-out effect for a thumbnail image as the new capture indicator design for 50 * Thumbnail cropping: 61 * (1) A 12dp spacing between mode option overlay and thumbnail. 64 * (4) The preview thumbnail image. 79 // Configurations for the thumbnail pop-out effect. 108 // Fields for the thumbnail pop-out effect. 109 /** The animators to move the thumbnail. */ 111 /** The current diameter for the thumbnail image. */ 115 /** The duration of the stretch phase in thumbnail pop-out effect. */ 117 /** The duration of the shrink phase in thumbnail pop-out effect. * [all...] |
/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...] |
/developers/build/prebuilts/androidtv/leanback/ |
.gitignore | 19 # Windows thumbnail db
|
/packages/apps/Gallery2/res/layout/ |
photo_set_item.xml | 12 android:id="@+id/thumbnail" />
|
/frameworks/base/media/java/android/mtp/ |
MtpObjectInfo.java | 103 * Returns the format code for the MTP object's thumbnail 104 * Will be zero for objects with no thumbnail 106 * @return the thumbnail format code 113 * Returns the size of the MTP object's thumbnail 114 * Will be zero for objects with no thumbnail 116 * @return the thumbnail size 123 * Returns the width of the MTP object's thumbnail in pixels 124 * Will be zero for objects with no thumbnail 126 * @return the thumbnail width 133 * Returns the height of the MTP object's thumbnail in pixel [all...] |
/packages/apps/Gallery2/src/com/android/photos/drawables/ |
DataUriThumbnailDrawable.java | 31 byte[] thumbnail = null; 35 thumbnail = exif.getThumbnail(); 38 return thumbnail;
|
/frameworks/base/services/core/java/com/android/server/wm/ |
AppWindowAnimator.java | 67 // Special surface for thumbnail animation. If deferThumbnailDestruction is enabled, then we 68 // will make sure that the thumbnail is destroyed after the other surface is completed. This 70 SurfaceControl thumbnail; field in class:AppWindowAnimator 78 // This flag indicates that the destruction of the thumbnail surface is synchronized with 79 // another animation, so defer the destruction of this thumbnail surface for a single frame 165 if (thumbnail != null) { 166 thumbnail.destroy(); 167 thumbnail = null; 228 if (SHOW_TRANSACTIONS) WindowManagerService.logSurface(thumbnail, 229 "thumbnail", "POS " + tmpFloats[Matrix.MTRANS_X [all...] |