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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/jni/mediaeditor/
VideoEditorThumbnailMain.h 23 * @brief Thumbnail extract interface.
29 * @brief Interface to open a Thumbnail session.
30 * @param pContext (OUT) Thumbnail Context.
31 * @param pString (IN) File path from which thumbnail will be
42 * @brief Interface to retrieve a RGB888 format thumbnail pixels
43 * @param pContext (IN) Thumbnail Context.
45 * @param width (IN) Width of thumbnail
46 * @param height (IN) Height of thumbnail
47 * @param pTimeMS (IN/OUT)Time stamp at which thumbnail is retrieved.
57 * @brief Interface to retrieve a RGB565 format thumbnail pixel
    [all...]
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_thumbnail.html 6 <link rel="stylesheet" href="thumbnail.css">
8 <script src="thumbnail.js"></script>
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service.h 23 // bridge facilitating switch from TopSites as the thumbnail source to a more
27 // Sets the given thumbnail for the given URL. Returns true if the thumbnail
29 // that our current thumbnail was superior to the given one.
31 const gfx::Image& thumbnail) = 0;
35 // process of creating a thumbnail from tab contents. The lifetime of these
40 // Gets a thumbnail for a given page. Returns true iff we have the thumbnail.
48 // Returns true if the page thumbnail should be updated.
  /external/chromium/chrome/common/
thumbnail_score.h 12 // A set of metadata about a Thumbnail.
20 // thumbnail generation time to Now().
34 // How "boring" a thumbnail is. The boring score is the 0,1 ranged
40 // Whether the thumbnail was taken with height greater then
46 // Whether this thumbnail was taken while the renderer was
53 // Record the time when a thumbnail was taken. This is used to make
57 // The number of hops from the final destination page that this thumbnail was
58 // taken at. When a thumbnail is taken, this will always be the redirect
67 // a thumbnail for the first would have a redirect hop of 1, and the second
71 // How bad a thumbnail needs to be before we completely ignore it
    [all...]
  /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;
  /external/chromium/chrome/browser/resources/
bug_report.css 44 .thumbnail-list {
52 .image-thumbnail-container {
59 .image-thumbnail-container-selected {
66 .image-thumbnail-container:hover {
75 .image-thumbnail {
83 .image-thumbnail:hover {
87 .image-thumbnail div {
91 .image-thumbnail img {
96 .image-thumbnail:hover div {
107 .image-thumbnail:hover div img
    [all...]
new_new_tab_theme.css 38 .thumbnail {
42 .thumbnail-container,
43 .thumbnail-container > .title {
47 .thumbnail-container:focus .thumbnail,
48 .thumbnail-container:hover .thumbnail {
52 .thumbnail-container:focus .edit-bar,
53 .thumbnail-container:hover .edit-bar {
59 .thumbnail-container:hover > .edit-mode-border
    [all...]
  /packages/wallpapers/NoiseField/res/xml/
wallpaper.xml 5 android:thumbnail="@drawable/wallpaper_thumb" />
  /external/chromium_org/chrome/browser/history/
top_sites_database.cc 89 "thumbnail BLOB,"
118 "SELECT url, url_rank, title, thumbnail, redirects, "
142 Images thumbnail; local
144 thumbnail.thumbnail = base::RefCountedBytes::TakeVector(&data);
145 thumbnail.thumbnail_score.boring_score = statement.ColumnDouble(5);
146 thumbnail.thumbnail_score.good_clipping = statement.ColumnBool(6);
147 thumbnail.thumbnail_score.at_top = statement.ColumnBool(7);
148 thumbnail.thumbnail_score.time_at_snapshot =
150 thumbnail.thumbnail_score.load_completed = statement.ColumnBool(9)
    [all...]
history_indexer.idl 19 // This is the method called by Chrome to send content and thumbnail of the
20 // page to be indexed. The html content and thumbnail for the same url
22 // thumbnail parameters will be NULL when sending only the content.
27 // |thumbnail_format| - The format of the thumbnail image. It is currently
30 // |thumbnail| - This is an array of bytes that represents the thumbnail in
37 [in] VARIANT thumbnail);
top_sites_database.h 49 // Set a thumbnail for a URL. |url_rank| is the position of the URL
52 // thumbnail and rank. Shift the ranks of other URLs if necessary.
55 const Images& thumbnail);
61 // Get a thumbnail for a given page. Returns true iff we have the thumbnail.
62 bool GetPageThumbnail(const GURL& url, Images* thumbnail);
70 // Creates the thumbnail table, returning true if the table already exists
74 // Upgrades the thumbnail table to version 2, returning true if the
81 const Images& thumbnail);
86 // Updates thumbnail of a URL that's already in the database
    [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_indexer.idl 16 // This is the method called by Chrome to send content and thumbnail of the
17 // page to be indexed. The html content and thumbnail for the same url
19 // thumbnail parameters will be NULL when sending only the content.
24 // |thumbnail_format| - The format of the thumbnail image. It is currently
27 // |thumbnail| - This is an array of bytes that represents the thumbnail in
34 [in] VARIANT 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...]
  /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...]
  /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...]
  /external/chromium_org/chrome/common/
thumbnail_score.h 11 // A set of metadata about a Thumbnail.
19 // thumbnail generation time to Now().
33 // How "boring" a thumbnail is. The boring score is the 0,1 ranged
40 // absolute score is not suitable for judging whether the thumbnail is
46 // Whether the thumbnail was taken with height greater than
53 // Whether this thumbnail was taken while the renderer was
60 // Whether this thumbnail was taken after load was completed.
65 // Record the time when a thumbnail was taken. This is used to make
69 // The number of hops from the final destination page that this thumbnail was
70 // taken at. When a thumbnail is taken, this will always be the redirec
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp4/
most_visited_page.css 30 /* filler mode: hide everything except the thumbnail --- leave a grey rectangle
102 .thumbnail {
111 * to scale a thumbnail larger than this size. */
116 .filler .thumbnail {
123 .thumbnail-shield {
132 .thumbnail-shield {
137 .most-visited:focus .thumbnail,
138 .most-visited:hover .thumbnail {
142 .most-visited:focus .thumbnail-shield,
143 .most-visited:hover .thumbnail-shield
    [all...]
suggestions_page.css 86 .suggestions:focus .thumbnail,
87 .suggestions:hover .thumbnail {
91 .suggestions:focus .thumbnail-shield,
92 .suggestions:hover .thumbnail-shield,
93 .suggestions:active .thumbnail-shield {
99 /* The thumbnail gets lighter when clicked, but not when the click is on the
101 .suggestions:active .close-button:not(:active) + .thumbnail {
105 /* The thumbnail gets a shadow when clicked, but not when the click is on the
107 .suggestions:active .close-button:not(:active) + .thumbnail .thumbnail-shield
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp_android/
mostvisited.css 15 .thumbnail-cell {
20 .thumbnail-cell-shade {
28 .thumbnail-cell-shade-active {
32 body[device='phone'] .thumbnail-cell {
39 body[device='phone'] #most_visited_list .thumbnail-container {
43 body[device='phone'] #most_visited_list:active .thumbnail-container {
66 /* This is the div that gets the background set as a thumbnail */
67 body[device='phone'] #most_visited_list .thumbnail {
  /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...]
  /external/chromium/chrome/browser/ui/webui/
thumbnail_source.h 41 // Send the default thumbnail when we are missing a real one.
44 // Raw PNG representation of the thumbnail to show when the thumbnail
45 // database doesn't have a thumbnail for a webpage.
  /external/chromium_org/native_client_sdk/src/libraries/xray/
xray.odt 
  /external/sonivox/docs/
EAS_Library_Integration_Guide.odt 
  /external/chromium_org/chrome/browser/devtools/frontend/
devtools_discovery_page.html 34 .thumbnail {
47 .thumbnail:hover {
53 .thumbnail.connected {
57 .thumbnail.connected:hover {
113 var thumbnail = document.createElement("div");
114 thumbnail.className = item_object.devtoolsFrontendUrl ?
115 "thumbnail" : "thumbnail connected";
116 thumbnail.style.cssText = "background-image:url(" +
119 frontend_ref.appendChild(thumbnail);
    [all...]

Completed in 522 milliseconds

1 2 3 4 5 6 7 8 91011>>