Searched refs:images (Results 1 - 25 of 178) sorted by relevance

12345678

/external/chromium/chrome/browser/webdata/
H A Dweb_apps_table_unittest.cc67 // Web app should initially have no images.
68 std::vector<SkBitmap> images; local
69 ASSERT_TRUE(db.GetWebAppsTable()->GetWebAppImages(url, &images));
70 ASSERT_EQ(0U, images.size());
80 ASSERT_TRUE(db.GetWebAppsTable()->GetWebAppImages(url, &images));
81 ASSERT_EQ(1U, images.size());
82 ASSERT_EQ(16, images[0].width());
83 ASSERT_EQ(16, images[0].height());
91 // transparent images because of pre-multiplication rounding errors.
100 images
[all...]
H A Dweb_apps_table.h23 // has_all_images Do we have all the images?
40 bool GetWebAppImages(const GURL& url, std::vector<SkBitmap>* images);
/external/chromium_org/chrome/browser/webdata/
H A Dweb_apps_table_unittest.cc61 // Web app should initially have no images.
62 std::vector<SkBitmap> images; local
63 ASSERT_TRUE(table_->GetWebAppImages(url, &images));
64 ASSERT_EQ(0U, images.size());
74 ASSERT_TRUE(table_->GetWebAppImages(url, &images));
75 ASSERT_EQ(1U, images.size());
76 ASSERT_EQ(16, images[0].width());
77 ASSERT_EQ(16, images[0].height());
85 // transparent images because of pre-multiplication rounding errors.
94 images
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebImageTest.cpp71 WebVector<WebImage> images = WebImage::framesFromData(WebData(data)); local
72 ASSERT_EQ(2u, images.size());
73 EXPECT_TRUE(images[0].size() == WebSize(2, 2));
74 EXPECT_TRUE(images[1].size() == WebSize(1, 1));
75 SkAutoLockPixels autoLock1(images[0].getSkBitmap());
76 EXPECT_EQ(SkColorSetARGB(255, 255, 255, 255), images[0].getSkBitmap().getColor(0, 0));
77 SkAutoLockPixels autoLock2(images[1].getSkBitmap());
78 EXPECT_EQ(SkColorSetARGB(255, 0, 0, 0), images[1].getSkBitmap().getColor(0, 0));
86 WebVector<WebImage> images = WebImage::framesFromData(WebData(data)); local
87 ASSERT_TRUE(images
93 WebVector<WebImage> images = WebImage::framesFromData(WebData(badImage)); local
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/
H A Dslider.css37 background-image: url(../images/slider/slide_bar_center.png);
55 background-image: url(../images/slider/slider_bar_right.png);
62 background-image: url(../images/slider/slide_bar_fill_center.png);
67 background-image: url(../images/slider/slide_bar_fill_left.png);
74 background-image: url(../images/slider/slide_bar_disabled_center.png);
78 background-image: url(../images/slider/slide_bar_disabled_center.png);
82 background-image: url(../images/slider/slide_bar_disabled_left.png);
86 background-image: url(../images/slider/slide_bar_disabled_right.png);
99 background-image: url(../images/slider/slider_thumb.png);
104 background-image: url(../images/slide
[all...]
/external/chromium_org/content/child/
H A Dimage_decoder.cc44 const blink::WebVector<WebImage>& images = WebImage::framesFromData( local
47 for (size_t i = 0; i < images.size(); ++i)
48 result.push_back(images[i].getSkBitmap());
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DTextureArray.java30 * Construct a TextureArray from the given list of images
34 * @param images
36 public TextureArray(List<Image> images) { argument
38 int width = images.get(0).getWidth();
39 int height = images.get(0).getHeight();
40 Image arrayImage = new Image(images.get(0).getFormat(), width, height,
43 for (Image img : images) {
47 "all images must have the same width/height");
/external/chromium_org/chrome/browser/resources/ntp_android/
H A Dopentabs.css146 background-image: url(images/disclosure_open_mdpi.png);
154 background-image: url(images/disclosure_closed_mdpi.png);
162 background-image: url(../../../../ui/webui/resources/images/laptop.png);
170 background-image: url(../../../../ui/webui/resources/images/tablet.png);
178 background-image: url(../../../../ui/webui/resources/images/phone.png);
186 background-image: url(images/sent_mdpi.png);
195 background-image: url(images/disclosure_open_hdpi.png);
198 background-image: url(images/disclosure_closed_hdpi.png);
202 url(../../../../ui/webui/resources/images/1.5x/laptop.png);
206 url(../../../../ui/webui/resources/images/1.
[all...]
H A Dbookmarks.css62 background-image: url(images/breadcrumb_mdpi.png);
117 background-image: url(images/bookmark_folder_mdpi.png);
147 background-image: url(images/bookmark_border_mdpi.png);
159 background-image: url(images/bookmark_bg_mdpi.png);
219 background-image: url(images/bookmark_bg_tvdpi.png);
222 background-image: url(images/bookmark_border_tvdpi.png);
225 background-image: url(images/bookmark_folder_tvdpi.png);
228 background-image: url(images/breadcrumb_tvdpi.png);
246 background-image: url(images/bookmark_bg_hdpi.png);
249 background-image: url(images/bookmark_border_hdp
[all...]
/external/chromium_org/chrome/test/functional/ispy/common/
H A Dimage_tools.py12 def _AreTheSameSize(images):
13 """Returns whether a set of images are the size size.
16 images: a list of images to compare.
24 if len(images) > 1:
25 return all(images[0].size == img.size for img in images[1:])
27 raise Exception('No images passed in.')
34 """Returns an image representing the difference between the two images.
36 This function computes the difference between two images takin
[all...]
H A Dispy_utils.py96 def GenerateExpectation(self, expectation, images):
97 """Creates and uploads an expectation to GS from a set of images and name.
99 This method generates a mask from the uploaded images, then
100 uploads the mask and first of the images to GS as a expectation.
105 images: a list of RGB encoded PIL.Images
114 mask = image_tools.InflateMask(image_tools.CreateMask(images), 7)
116 GetExpectationPath(expectation, 'expected.png'), images[0])
158 A named tuple: 'Expectation', containing two images: expected and mask.
212 def GenerateExpectationPinkOut(self, expectation, images, pint_out, rgb):
217 images
[all...]
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dchange_picture_options.js90 $('images-list').appendChild(divElement);
94 * Inserts received images before "Choose file" button.
95 * @param {List} images A list of urls to user images.
98 addUserImages_: function(images) {
99 for (var i = 0; i < images.length; i++) {
100 var imageUrl = images[i];
/external/chromium-trace/trace-viewer/src/ui/
H A Dmouse_mode_selector.css26 background: url(../images/ui-states.png) 2px 3px no-repeat;
36 background-image: url(../images/ui-states.png);
45 background-image: url(../images/ui-states.png);
54 background-image: url(../images/ui-states.png);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dbuild.properties14 images/,\
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dprocess_track_base.css28 content: url(../../images/collapse.png);
33 content: url(../../images/expand.png);
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
H A Dpngfix.js7 for(var i=0; i<document.images.length; i++)
9 var img = document.images[i]
/external/chromium_org/tools/grit/grit/gather/
H A Dchrome_html.py15 referencing all available images.
45 '-webkit-image-set\((?P<images>' +
58 """Generate the list of images which match the provided scale factors.
79 images = [('1x', filename)]
84 images.append((scale_factor, scale_filename))
85 return images
95 images = [('1x', filename)]
106 images.append((scale_factor, scale_image_name))
107 return images
110 def GenerateImageSet(images, quot
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSkyFactory.java99 // throw new IllegalArgumentException("3D/Array images not allowed");
110 private static void checkImagesForCubeMap(Image... images) { argument
111 if (images.length == 1) {
115 Format fmt = images[0].getFormat();
116 int width = images[0].getWidth();
117 int height = images[0].getHeight();
119 ByteBuffer data = images[0].getData(0);
122 checkImage(images[0]);
124 for (int i = 1; i < images.length; i++) {
125 Image image = images[
[all...]
/external/chromium_org/chrome/browser/themes/
H A Dbrowser_theme_pack.h41 // The idea is to pre-process all images (tinting, compositing, etc) at theme
93 // Cached images.
147 // Loads the unmodified images packed in the extension to SkBitmaps. Returns
148 // true if all images loaded.
152 // Populate |images| cache with empty gfx::Images. Image reps are lazily
154 // Source and destination is |images|.
155 void CreateImages(ImageCache* images) const;
157 // Crops images down to a size such that most of the cropped image will be
158 // displayed in the UI. Cropping is useful because images from custom themes
159 // can be of any size. Source and destination is |images|
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMapElement.cpp78 RefPtr<HTMLCollection> images = document().images(); local
79 for (unsigned i = 0; Node* curr = images->item(i); i++) {
/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dtcmalloc_snapshot_view.css32 background-image: url(../images/expand.png);
37 background-image: url(../images/collapse.png);
/external/jmonkeyengine/engine/src/test/jme3test/texture/
H A DTestTextureArray.java36 List<Image> images = new ArrayList<Image>();
37 images.add(tex1.getImage());
38 images.add(tex2.getImage());
39 TextureArray tex3 = new TextureArray(images);
/external/chromium/chrome/browser/history/
H A Dtop_sites_cache.h31 void SetThumbnails(const URLToImagesMap& images);
32 const URLToImagesMap& images() const { return images_; } function in class:history::TopSitesCache
100 // The images. These map from canonical url to image.
/external/chromium_org/chrome/browser/resources/about_welcome_android/
H A Dabout_welcome_android.css78 background-image: url(images/holo_logo_200.png);
85 background-image: url(images/holo_logo_200.png);
92 background-image: url(images/holo_logo_150.png);
99 background-image: url(images/holo_logo_200.png);
/external/chromium_org/third_party/flot/
H A Djquery.flot.image.min.js1 /* Flot plugin for plotting images.
11 There are two helpers included for retrieving images. The easiest work the way
12 that you put in URLs instead of images in the data, like this:
17 options are the same as you pass in to $.plot. This loads the images, replaces
18 the URLs in the data with the corresponding images and calls "callback" when
19 all images are loaded (or failed loading). In the callback, you can then call
24 Image object when all images are loaded or have failed loading.
29 images: {
40 images: { ... }
44 can't use images wit
[all...]

Completed in 636 milliseconds

12345678