HomeSort by relevance Sort by last modified time
    Searched full:thumbnail (Results 126 - 150 of 413) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoStore.java 164 * is already thumbnail-sized or smaller, this will do nothing (and will return 0).
167 * is thumbnail-sized or smaller.
175 * is already thumbnail-sized or smaller, this will do nothing (and will return 0) unless
178 * @param allowSmallImageStorage Whether thumbnail-sized or smaller photos should still be
181 * is thumbnail-sized or smaller and allowSmallImageStorage is false.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsPanelView.java 162 // If we set the default thumbnail now, we avoid an onLayout when we update
163 // the thumbnail later (if they both have the same dimensions)
540 private void updateThumbnail(ViewHolder h, Bitmap thumbnail, boolean show, boolean anim) {
541 if (thumbnail != null) {
545 h.thumbnailViewImage.setImageBitmap(thumbnail);
550 h.thumbnailViewImageBitmap.getWidth() != thumbnail.getWidth() ||
551 h.thumbnailViewImageBitmap.getHeight() != thumbnail.getHeight()) {
556 float scale = mThumbnailWidth / (float) thumbnail.getWidth();
569 h.thumbnailViewImageBitmap = thumbnail;
581 // Look for a view showing this thumbnail, to update
    [all...]
  /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();
  /external/chromium/chrome/browser/ui/cocoa/
tabpose_window.mm 104 // A CALayer that draws a thumbnail for a TabContentsWrapper object. The layer
106 // requests a thumbnail bitmap from the TabContents's renderer process if not.
108 // The TabContentsWrapper the thumbnail is for.
111 // The size the thumbnail is drawn at when zoomed in.
114 // Used to load a thumbnail, if required.
117 // If the backing store couldn't be used and a thumbnail was returned from a
121 // True if the layer already sent a thumbnail request to a renderer.
132 // ThumbnailLoader talks to the renderer process to load a thumbnail of a given
133 // RenderWidgetHost, and sends the thumbnail back to a ThumbnailLayer once it
174 // thumbnails at the zoomed-out pixel size for all but the thumbnail the use
    [all...]
tabpose_window.h 84 // layer of the currently selected thumbnail).
  /external/chromium/chrome/browser/history/
top_sites.cc 186 const SkBitmap& thumbnail,
209 if (!EncodeBitmap(thumbnail, &thumbnail_data))
532 // When comparing the thumbnail scores, we need to take into account the
533 // redirect hops, which are not generated when the thumbnail is because the
541 image->thumbnail.get())
544 image->thumbnail = const_cast<RefCountedBytes*>(thumbnail_data);
552 const RefCountedBytes* thumbnail,
554 if (!SetPageThumbnailNoDB(url, thumbnail, score))
600 const RefCountedBytes* thumbnail,
607 image.second.thumbnail = const_cast<RefCountedBytes*>(thumbnail)
    [all...]
expire_history_backend_unittest.cc 27 #include "chrome/tools/profiles/thumbnail-inl.h"
185 // Each visit has indexed data, each URL has thumbnail. The first two URLs will
229 scoped_ptr<SkBitmap> thumbnail(
235 top_sites_->SetPageThumbnail(url_row1.url(), *thumbnail, score);
236 top_sites_->SetPageThumbnail(url_row2.url(), *thumbnail, score);
237 top_sites_->SetPageThumbnail(url_row3.url(), *thumbnail, score);
373 // Thumbnail should be gone.
460 // Verify things are the way we expect with a URL row, favicon, thumbnail.
524 // Verify things are the way we expect with a URL row, favicon, thumbnail.
576 // Should still have the thumbnail
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
PanoramaActivity.java 31 import com.android.camera.Thumbnail;
148 private Thumbnail mThumbnail;
309 // If the activity is paused, save the thumbnail to the file here.
312 // Set the thumbnail bitmap here because mThumbnailView must be accessed
316 // Share popup may still have the reference to the old thumbnail. Clear it.
718 mThumbnailView = (RotateImageView) findViewById(R.id.thumbnail);
809 // Load the thumbnail from the disk.
811 mThumbnail = Thumbnail.loadFrom(new File(getFilesDir(), Thumbnail.LAST_THUMB_FILENAME));
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 82 public static final String THUMBNAIL = "thumbnail";
257 map.put(Bookmarks.THUMBNAIL, Bookmarks.THUMBNAIL);
307 map.put(History.THUMBNAIL, History.THUMBNAIL);
325 map.put(Images.THUMBNAIL, Images.THUMBNAIL);
340 map.put(Combined.THUMBNAIL, Combined.THUMBNAIL);
    [all...]
SnapshotProvider.java 48 public static final String THUMBNAIL = "thumbnail";
88 Snapshots.THUMBNAIL + " BLOB," +
  /frameworks/base/media/java/android/mtp/
MtpDevice.java 159 * Returns the thumbnail data for an object as a byte array.
160 * The size and format of the thumbnail data can be determined via
166 * @return the object's thumbnail, or null if reading fails
  /packages/apps/Browser/src/com/android/browser/homepages/
RequestHandler.java 105 History.THUMBNAIL
108 + " NOT LIKE 'content:%' AND " + History.THUMBNAIL + " IS NOT NULL";
135 } else if (key.equals("thumbnail")) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileParserTask.java 68 * @param thumbDisplay display to use to create thumbnail images
69 * @param thumbWidth width of thumbnail images
70 * @param thumbHeight height of thumbnail images
  /frameworks/base/docs/html/design/style/
touch-feedback.jd 37 operation will be. For example, in Recents, when you start swiping a thumbnail left or right, it
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java 65 BrowserContract.Bookmarks.THUMBNAIL,
255 Bitmap thumbnail = null, favicon = null; local
259 thumbnail = BitmapFactory.decodeByteArray(
261 views.setImageViewBitmap(R.id.thumb, thumbnail);
  /packages/apps/Camera/res/values-sw640dp-land/
styles.xml 24 <!-- Thumbnail size calculation relies on the layout width. If this is
  /packages/apps/Camera/res/values-sw640dp-port/
styles.xml 24 <!-- Thumbnail size calculation relies on the layout width. If this is
  /packages/apps/Camera/src/com/android/camera/ui/
ControlPanelLayout.java 27 * the shutter button, thumbnail, front/back camera picker, and mode picker.
  /packages/apps/Camera/tests/src/com/android/camera/activity/
CameraTestCase.java 255 "jpeg-thumbnail-size-values=320x240,0x0;jpeg-thumbnail-width=320;jpeg-thumbnail-height=240;" +
256 "jpeg-thumbnail-quality=60;jpeg-quality=95;" +
  /packages/apps/Gallery/src/com/android/camera/gallery/
VideoObject.java 34 * two thumbnail bitmaps as well as other information such as the id, and the
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
ControlPanelLayout.java 28 * the shutter button, thumbnail, front/back camera picker, and mode picker.
  /packages/apps/Browser/src/com/android/browser/
AddBookmarkPage.java 76 // Place on an edited bookmark to remove the saved thumbnail
763 Bitmap thumbnail = invalidateThumbnail ? null local
764 : (Bitmap) bundle.getParcelable(BrowserContract.Bookmarks.THUMBNAIL);
771 title, thumbnail, mCurrentFolder);
918 Bitmap thumbnail; local
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Camera.java 156 // A popup window that contains a bigger thumbnail and a list of apps to share.
158 // The bitmap of the last captured picture thumbnail and the URI of the
160 private Thumbnail mThumbnail;
161 // An imageview showing showing the last captured picture thumbnail.
372 if (!mIsImageCaptureIntent) { // no thumbnail in image capture intent
417 // Load the thumbnail from the disk.
418 mThumbnail = Thumbnail.loadFrom(new File(getFilesDir(), Thumbnail.LAST_THUMB_FILENAME));
426 mThumbnail = Thumbnail.getLastThumbnail(mContentResolver);
    [all...]
VideoCamera.java 161 // A popup window that contains a bigger thumbnail and a list of apps to share.
163 // The bitmap of the last captured video thumbnail and the URI of the
165 private Thumbnail mThumbnail;
166 // An imageview showing showing the last captured picture thumbnail.
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Animation.java 132 // Create a thumbnail animation. We are going to build our thumbnail

Completed in 3363 milliseconds

1 2 3 4 56 7 8 91011>>