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

  /frameworks/base/core/java/android/app/
IThumbnailReceiver.aidl 27 void newThumbnail(int id, in Bitmap thumbnail, CharSequence description);
ActivityManager.java 206 * Thumbnail representation of the task's current state.
208 public Bitmap thumbnail; field in class:ActivityManager.RunningTaskInfo
237 if (thumbnail != null) {
239 thumbnail.writeToParcel(dest, 0);
254 thumbnail = Bitmap.CREATOR.createFromParcel(source);
256 thumbnail = null;
    [all...]
ActivityThread.java 2210 Bitmap thumbnail = null; local
2345 Bitmap thumbnail; field in class:ActivityThread.StopInfo
2801 Bitmap thumbnail = createThumbnailBitmap(r); local
    [all...]
IActivityManager.java 125 Bitmap thumbnail, CharSequence description) throws RemoteException;
145 Bitmap thumbnail, CharSequence description) throws RemoteException;
ActivityManagerNative.java 385 Bitmap thumbnail = data.readInt() != 0 local
388 activityStopped(token, thumbnail, description);
549 Bitmap thumbnail = data.readInt() != 0 local
552 reportThumbnail(token, thumbnail, description);
    [all...]
  /external/webkit/WebKit/qt/docs/webkitsnippets/webpage/
main.cpp 48 Thumbnailer thumbnail(QUrl("http://qt.nokia.com"));
50 QObject::connect(&thumbnail, SIGNAL(finished()),
75 QImage thumbnail = image.scaled(400, 400); local
76 thumbnail.save("thumbnail.png");
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerRunningTaskInfoTest.java 38 mRunningTaskInfo.thumbnail = null;
78 assertNull(values.thumbnail);
81 // test thumbnail is not null
82 mRunningTaskInfo.thumbnail = Bitmap.createBitmap(480, 320,
89 assertNotNull(values.thumbnail);
90 assertEquals(320, values.thumbnail.getHeight());
91 assertEquals(480, values.thumbnail.getWidth());
92 assertEquals(Bitmap.Config.RGB_565, values.thumbnail.getConfig());
111 assertNull(values.thumbnail);
114 // test thumbnail is not nul
    [all...]
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperListActivity.java 138 Bitmap thumbnail = Bitmap.createBitmap(thumbWidth, thumbHeight, local
142 canvas.setBitmap(thumbnail);
159 thumb = new BitmapDrawable(res, thumbnail);
185 ImageView thumbnail; field in class:LiveWallpaperListActivity.ViewHolder
215 holder.thumbnail = (ImageView) convertView.findViewById(R.id.thumbnail);
222 holder.thumbnail.setImageDrawable(mThumbnails.get(position));
  /packages/apps/Browser/src/com/android/browser/
Bookmarks.java 59 * @param thumbnail A thumbnail for the bookmark.
66 Bitmap thumbnail, boolean retainIcon) {
80 map.put(Browser.BookmarkColumns.THUMBNAIL,
81 bitmapToBytes(thumbnail));
112 map.put(Browser.BookmarkColumns.THUMBNAIL,
113 bitmapToBytes(thumbnail));
AddBookmarkPage.java 94 mThumbnail = (Bitmap) mMap.getParcelable("thumbnail");
129 Bitmap thumbnail = invalidateThumbnail ? null local
130 : (Bitmap) bundle.getParcelable("thumbnail");
136 Bookmarks.addBookmark(null, cr, url, title, thumbnail, true);
234 bundle.putParcelable("thumbnail", mThumbnail);
BrowserBookmarksAdapter.java 160 values.put(Browser.BookmarkColumns.THUMBNAIL, new byte[0]);
435 Bitmap thumbnail = getScreenshot(position); local
436 if (thumbnail == null) {
439 thumb.setImageBitmap(thumbnail);
BrowserActivity.java 314 // clear up the thumbnail directory if we can't restore the state as
2460 Picture thumbnail = view.capturePicture(); local
3566 Bitmap thumbnail = createScreenshot(current); local
    [all...]
BrowserBookmarksPage.java 273 final Bitmap thumbnail = local
274 (Bitmap) intent.getParcelableExtra("thumbnail");
282 thumbnail,
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaThumbRequest.java 101 // Only requests from Thumbnail API has this group_id parameter. In other cases,
109 Uri updateDatabase(Bitmap thumbnail) {
124 values.put(Images.Thumbnails.WIDTH, thumbnail.getWidth());
125 values.put(Images.Thumbnails.HEIGHT, thumbnail.getHeight());
135 * Check if the corresponding thumbnail and mini-thumb have been created
138 * created, MINI_KIND thumbnail is stored in JPEG file and MICRO_KIND
139 * thumbnail is stored in a random access file (MiniThumbFile).
170 // If we can't retrieve the thumbnail, first check if there is one
184 Log.w(TAG, "Can't create mini thumbnail for " + mPath);
231 Log.w(TAG, "can't create bitmap for thumbnail.")
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 56 * content://com.android.email.attachmentprovider/acct#/attach#/THUMBNAIL/width#/height#
73 private static final String FORMAT_THUMBNAIL = "THUMBNAIL";
149 * - If thumbnail Uri, always returns "image/png" (even if there's no attachment)
227 * and "thumbnail", which attempts to generate a thumbnail image.
231 * TODO: The thumbnail mode returns null for its failure cases, instead of throwing
270 Bitmap thumbnail = createThumbnail(type, in); local
271 if (thumbnail == null) {
274 thumbnail = Bitmap.createScaledBitmap(thumbnail, width, height, true)
    [all...]
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 43 * Thumbnail generation routines for media provider.
65 * Constant used to indicate the dimension of mini thumbnail.
71 * Constant used to indicate the dimension of micro thumbnail.
77 * This method first examines if the thumbnail embedded in EXIF is bigger than our target
78 * size. If not, then it'll create a thumbnail from original image. Due to efficiency
82 * This method always returns a "square thumbnail" for MICRO_KIND thumbnail.
130 // now we make it a "square thumbnail" for MICRO_KIND thumbnail
139 * Create a video thumbnail for a video. May return null if the video i
206 Bitmap thumbnail = transform(matrix, source, width, height, local
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityRecord.java 85 Bitmap thumbnail; // icon representation of paused screen field in class:ActivityRecord
103 boolean thumbnailNeeded;// has someone requested a thumbnail?
ActivityManagerService.java 680 * still report back to a pending thumbnail receiver.
    [all...]
ActivityStack.java     [all...]
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 337 // and generated thumbnail bitmaps for each item. We do this instead of
338 // generating thumbnail bitmaps in checkImageList() and checkBucketIds()
340 // the thumb bitmaps. (Generating thumbnail bitmaps takes some time.)
797 // The thumbnail bitmap is set by setThumbBitmap() later because we want
800 public Bitmap mThumbBitmap; // the thumbnail bitmap for the image list
924 (GalleryPickerItem) v.findViewById(R.id.thumbnail);
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 514 milliseconds