Searched defs:images (Results 1 - 25 of 33) sorted by relevance

12

/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.
H A Dtop_sites_cache.cc23 void TopSitesCache::SetThumbnails(const URLToImagesMap& images) { argument
24 images_ = images;
/external/chromium/chrome/browser/webdata/
H A Dweb_apps_table.cc72 std::vector<SkBitmap>* images) {
87 images->push_back(image);
71 GetWebAppImages(const GURL& url, std::vector<SkBitmap>* images) argument
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_data_service.h99 // The images, may be empty.
100 std::vector<SkBitmap> images; member in struct:WDAppImagesResult
340 // images, but only one at a particular size. If there was an image for the
344 // Sets whether all the images have been downloaded for the specified web app.
347 // Removes all images for the specified web app.
350 // Fetches the images and whether all images have been downloaded for the
/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/oprofile/libpp/
H A Dlocate_images.h3 * Location of binary images
72 /// return the archive path used to populate the images name map
94 images_t images; member in class:extra_images
95 /// the archive path passed to populate the images name map.
H A Dprofile_spec.cpp42 void fixup_image_spec(vector<string> & images, extra_images const & extra) argument
44 vector<string>::iterator it = images.begin();
45 vector<string>::iterator const end = images.end();
/external/webkit/Source/WebKit/chromium/public/
H A DWebCache.h61 ResourceTypeStat images; member in struct:WebKit::WebCache::ResourceTypeStats
/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/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
H A DLwjglDisplay.java203 private ByteBuffer[] imagesToByteBuffers(Object[] images) { argument
204 ByteBuffer[] out = new ByteBuffer[images.length];
205 for (int i = 0; i < images.length; i++) {
206 BufferedImage image = (BufferedImage) images[i];
/external/chromium/chrome/browser/extensions/
H A Dsandboxed_extension_unpacker.cc184 // installed. For example, the install UI shows images from inside the
461 ExtensionUnpacker::DecodedImages images; local
462 if (!ExtensionUnpacker::ReadImagesFromFile(temp_dir_.path(), &images)) {
472 // Delete any images that may be used by the browser. We're going to write
473 // out our own versions of the parsed images, and we want to make sure the
476 if (image_paths.size() != images.size()) {
477 // Decoded images don't match what's in the manifest.
509 // Write our parsed images back to disk as well.
510 for (size_t i = 0; i < images.size(); ++i) {
511 const SkBitmap& image = images[
[all...]
/external/chromium/chrome/browser/themes/
H A Dbrowser_theme_pack_unittest.cc171 // The stargazing theme defines the following images:
179 // Here are a few images that we shouldn't expect because even though
371 // HasCustomImage should only return true for images that exist in the
372 // extension and not for autogenerated images.
373 std::string images = "{ \"theme_frame\": \"one\" }"; local
375 ParseImageNamesJSON(images, &out_file_paths);
382 std::string images = "{ \"theme_frame\": \"does_not_exist\" }"; local
384 ParseImageNamesJSON(images, &out_file_paths);
H A Dbrowser_theme_pack.cc50 // Persistent constants for the main images that we need. These have the same
246 // Mapping used in GenerateFrameImages() to associate frame images with the
266 // A list of images that don't need tinting or any other modification and can
342 // Builds the images. (Image building is dependent on tints).
500 // Check our cache of prepared images, first.
860 // Some images need to go directly into |image_memory_|. No modification is
899 // thing and just use the default images.
970 // We only need to generate the background tab images if we were provided
998 void BrowserThemePack::RepackImages(const ImageCache& images, argument
1001 for (ImageCache::const_iterator it = images
1026 AddRawImagesTo(const RawImages& images, RawDataForWriting* out) const argument
[all...]
/external/chromium/chrome/common/extensions/
H A Dextension_unpacker.cc195 // Decode any images that the browser needs to display.
245 DecodedImages* images) {
253 return IPC::ReadParam(&pickle, &iter, images);
244 ReadImagesFromFile(const FilePath& extension_path, DecodedImages* images) argument
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DTextureAtlas.java122 private Map<String, byte[]> images; field in class:TextureAtlas
272 if (images == null) {
273 images = new HashMap<String, byte[]>();
275 byte[] image = images.get(mapName);
278 images.put(mapName, image);
396 if (images == null) {
399 byte[] image = images.get(mapName);
/external/webkit/Source/WebCore/loader/cache/
H A DMemoryCache.h21 This class provides all functionality needed for loading images, style sheets and html
46 // This cache holds subresources used by Web pages: images, scripts, stylesheets, etc.
100 TypeStatistic images; member in struct:WebCore::MemoryCache::Statistics
H A DCachedResourceLoader.cpp23 This class provides all functionality needed for loading images, style sheets and html
761 unsigned images = 0; local
782 images++;
798 if (images)
799 printf("IMAGES: %d (%d hits, hit rate %d%%)\n", images, images - imageMisses, (images - imageMisses) * 100 / images);
/external/oprofile/pp/
H A Dopannotate.cpp765 bool annotate_source(list<string> const & images) argument
794 list<string>::const_iterator it = images.begin();
795 list<string>::const_iterator const end = images.end();
825 list<string> images; local
839 images.push_back(it->image);
849 annotate_source(images);
/external/chromium/chrome/browser/chromeos/status/
H A Dnetwork_menu.cc909 const int* images = black ? kBarsImagesBlack : kBarsImages; local
910 return ResourceBundle::GetSharedInstance().GetBitmapNamed(images[index]);
927 const int* images = black ? kBarsImagesBlack : kBarsImages; local
928 return ResourceBundle::GetSharedInstance().GetBitmapNamed(images[index]);
936 SkBitmap* images = black ? kAnimatingImagesBlack : kAnimatingImages; local
941 // Lazily cache images.
942 if (images[index].empty()) {
955 images[index] =
961 return &images[index];
/external/opencv/cvaux/src/
H A Dcveigenobjects.cpp196 // (images, vectors, etc.). ROI supported.
421 // object for a group of input objects (images, vectors, etc.). ROI supported.
1163 // (images, vectors, etc.).
1202 IplImage **images = (IplImage **) (((CvInput *) & input)->data); local
1212 IplImage *img = images[i];
1266 // object for a group of input objects (images, vectors, etc.).
1566 CV_ERROR( CV_StsBadArg, "different sizes of images" );
/external/webkit/Source/WebKit/win/
H A DDOMHTMLClasses.cpp279 HRESULT STDMETHODCALLTYPE DOMHTMLDocument::images( function in class:DOMHTMLDocument
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_theme_service.cc91 // A list of images that we provide while in gtk mode.
120 static std::set<int> images; local
121 if (images.empty()) {
122 images.insert(kThemeImages, kThemeImages + arraysize(kThemeImages));
123 images.insert(kAutocompleteImages,
127 images.insert(buttons.begin(), buttons.end());
130 return images.count(id) > 0;
266 // broadcast new theme images and colors. Only realized widgets have style
685 // Before we start setting images and values, we have to clear out old, stale
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h83 @property(readonly, retain) DOMHTMLCollection *images; variable
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp4193 PassRefPtr<HTMLCollection> Document::images() function in class:WebCore::Document

Completed in 559 milliseconds

12