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

1 2 3 4

  /frameworks/base/core/java/android/app/
IThumbnailReceiver.aidl 27 void newThumbnail(int id, in Bitmap thumbnail, CharSequence description);
ActivityOptions.java 58 * Bitmap for thumbnail animation.
64 * Start X position of thumbnail animation.
70 * Start Y position of thumbnail animation.
222 * Create an ActivityOptions specifying an animation where a thumbnail
229 * thumbnail location and size provided here.
231 * @param source The View that this thumbnail is animating from. This
233 * @param thumbnail The bitmap that will be shown as the initial thumbnail
241 Bitmap thumbnail, int startX, int startY) {
242 return makeThumbnailScaleUpAnimation(source, thumbnail, startX, startY, null)
    [all...]
  /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...]
  /external/chromium/chrome/browser/history/
top_sites_database.cc 73 "thumbnail BLOB,"
90 "SELECT url, url_rank, title, thumbnail, redirects, "
114 Images thumbnail; local
115 thumbnail.thumbnail = RefCountedBytes::TakeVector(&data);
116 thumbnail.thumbnail_score.boring_score = statement.ColumnDouble(5);
117 thumbnail.thumbnail_score.good_clipping = statement.ColumnBool(6);
118 thumbnail.thumbnail_score.at_top = statement.ColumnBool(7);
119 thumbnail.thumbnail_score.time_at_snapshot =
122 (*thumbnails)[gurl] = thumbnail;
    [all...]
history_publisher.cc 14 const std::vector<unsigned char>& thumbnail, const GURL& url,
22 &thumbnail,
top_sites_database.h 50 // Set a thumbnail for a URL. |url_rank| is the position of the URL
53 // thumbnail and rank. Shift the ranks of other URLs if necessary.
56 const Images& thumbnail);
62 // Get a thumbnail for a given page. Returns true iff we have the thumbnail.
63 bool GetPageThumbnail(const GURL& url, Images* thumbnail);
69 // Creates the thumbnail table, returning true if the table already exists
76 const Images& thumbnail);
81 // Updates thumbnail of a URL that's already in the database.
83 const Images& thumbnail);
    [all...]
history_publisher.h 37 void PublishPageThumbnail(const std::vector<unsigned char>& thumbnail,
52 const std::vector<unsigned char>* thumbnail; member in struct:history::HistoryPublisher::PageData
77 // The format of the thumbnail we pass to indexers.
top_sites_cache.cc 28 RefCountedBytes* thumbnail,
31 img.thumbnail = thumbnail;
44 *bytes = found->second.thumbnail.get();
top_sites_backend.h 50 // Sets the thumbnail.
53 const Images& thumbnail);
86 // Sets the thumbnail.
89 const Images& thumbnail);
top_sites_backend.cc 54 const Images& thumbnail) {
58 url_rank, thumbnail));
133 const Images& thumbnail) {
137 db_->SetPageThumbnail(url, url_rank, thumbnail);
  /external/webkit/Source/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");
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapterItem.java 23 public BitmapDrawable thumbnail; field in class:BrowserBookmarksAdapterItem
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...]
  /external/chromium/chrome/browser/resources/ntp/
most_visited.css 9 .thumbnail-container {
17 .thumbnail-container:focus {
21 .thumbnail,
22 .thumbnail-container > .title {
28 .thumbnail-container > .title {
41 .thumbnail-wrapper {
59 .filler .thumbnail-wrapper {
64 .filler .thumbnail {
95 .thumbnail-container:focus .edit-bar,
96 .thumbnail-container:hover .edit-bar
    [all...]
  /frameworks/base/services/java/com/android/server/am/
TaskAccessInfo.java 26 Bitmap thumbnail; field in class:TaskAccessInfo.SubTask
  /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...]
  /frameworks/base/services/java/com/android/server/wm/
AppWindowAnimator.java 42 // Special surface for thumbnail animation.
43 Surface thumbnail; field in class:AppWindowAnimator
104 if (thumbnail != null) {
105 thumbnail.destroy();
106 thumbnail = null;
145 if (WindowManagerService.SHOW_TRANSACTIONS) WindowManagerService.logSurface(thumbnail,
146 "thumbnail", "POS " + tmpFloats[Matrix.MTRANS_X]
148 thumbnail.setPosition(tmpFloats[Matrix.MTRANS_X], tmpFloats[Matrix.MTRANS_Y]);
149 if (WindowManagerService.SHOW_TRANSACTIONS) WindowManagerService.logSurface(thumbnail,
150 "thumbnail", "alpha=" + thumbnailTransformation.getAlpha(
    [all...]
  /external/chromium/chrome/browser/resources/
bug_report.js 20 * Selects an image thumbnail in the specified div.
30 // If the the current div matches the thumbnail id provided,
31 // or there is no thumbnail id given, and we're at the first thumbnail.
33 thumbnailDivs[i].className = 'image-thumbnail-container-selected';
37 thumbnailDivs[i].className = 'image-thumbnail-container';
43 * Adds an image thumbnail to the specified div.
47 thumbnailDiv.className = 'image-thumbnail-container';
56 innerDiv.className = 'image-thumbnail-current';
58 innerDiv.className = 'image-thumbnail';
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
most_visited_page.css 35 /* filler mode: hide everything except the thumbnail --- leave a grey rectangle
46 * through from behind the thumbnail (some themes have a partially transparent
47 * thumbnail border color). */
154 .thumbnail {
161 .filler .thumbnail {
168 .thumbnail-wrapper {
183 .filler .thumbnail-wrapper {
188 .most-visited:focus:not(.filler) .thumbnail-wrapper,
189 .most-visited:hover .thumbnail-wrapper {
195 .most-visited:hover .thumbnail-wrapper
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
TaskDescription.java 88 public void setThumbnail(Bitmap thumbnail) {
89 mThumbnail = thumbnail;
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
ObjectBrowser.java 94 byte[] thumbnail = mClient.getThumbnail(mDeviceName, info.getObjectHandle());
95 if (thumbnail != null) {
96 Bitmap bitmap = BitmapFactory.decodeByteArray(thumbnail, 0, thumbnail.length);
98 ImageView thumbView = (ImageView)view.findViewById(R.id.thumbnail);
  /packages/apps/VideoEditor/src/com/android/videoeditor/
ProjectPickerAdapter.java 132 // Inflate a new view with project thumbnail and information.
135 // as a convertView, the async task might put a wrong thumbnail on it.
137 ImageView iv = (ImageView) v.findViewById(R.id.thumbnail);
138 Bitmap thumbnail; local
144 thumbnail = renderNewProjectThumbnail();
152 thumbnail = getThumbnail(project.getPath(), iv, title, duration);
155 if (thumbnail != null) {
156 drawBottomOverlay(thumbnail, title, duration);
157 iv.setImageBitmap(thumbnail);
267 final File thumbnail = new File(mProjectPath, VideoEditor.THUMBNAIL_FILENAME) local
    [all...]
  /frameworks/ex/carousel/test/src/com/android/carouseltest/
TaskSwitcherActivity.java 69 Bitmap thumbnail; field in class:TaskSwitcherActivity.ActivityDescription
79 thumbnail = _thumbnail;
88 thumbnail = null;
145 Bitmap bitmap = desc.thumbnail == null ? mBlankBitmap : desc.thumbnail;
177 Log.v(TAG, "New thumbnail for id=" + id + ", dimensions=" + w + "x" + h
181 info.thumbnail = bitmap;
249 if (r.thumbnail != null) {
250 int thumbWidth = r.thumbnail.getWidth();
251 int thumbHeight = r.thumbnail.getHeight()
    [all...]
  /external/chromium/chrome/browser/
aeropeek_manager.h 24 // This class is used for dispatching an event received by a thumbnail window
27 // * A user clicks an AeroPeek thumbnail.
29 // * A user closes an AeroPeek thumbnail.
33 // thumbnail window.
37 // This bitmap is used for creating thumbnail and preview images.
48 virtual bool GetTabThumbnail(int tab_id, SkBitmap* thumbnail) = 0;
57 // Windows 7 can dispay a thumbnail image of each tab to its taskbar so that
63 // This class adds a thumbnail window for this tab to the thumbnail list
66 // This class deletes the thumbnail window associated with this tab from th
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/css/
file_manager.css 45 /* Container for the detail and thumbnail (not implemented yet) list views. */
100 button.thumbnail-view > img {
113 .thumbnail-grid {
121 /* An item in the thumbnail view. */
122 .thumbnail-item {
130 .thumbnail-item > input[type="checkbox"] {
136 .thumbnail-item > div.img-container {
145 .thumbnail-item > div.img-container > img {
150 .thumbnail-item > div.filename-label {
163 /* Text box used for renaming in the thumbnail list. *
    [all...]

Completed in 706 milliseconds

1 2 3 4