Searched refs:image (Results 201 - 225 of 1766) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBorderImage.h29 PassRefPtrWillBeRawPtr<CSSValueList> createBorderImageValue(PassRefPtrWillBeRawPtr<CSSValue> image, PassRefPtrWillBeRawPtr<CSSValue> imageSlice, PassRefPtrWillBeRawPtr<CSSValue> borderSlice,
H A DCSSImageValue.h40 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const KURL& url, StyleImage* image = 0)
42 return adoptRefWillBeNoop(new CSSImageValue(url, url, image));
44 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleImage* image = 0)
46 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image));
52 // Returns a StyleFetchedImage if the image is cached already, otherwise a StylePendingImage.
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
H A DSVGImageForContainer.h39 static PassRefPtr<SVGImageForContainer> create(SVGImage* image, const FloatSize& containerSize, float zoom) argument
41 return adoptRef(new SVGImageForContainer(image, containerSize, zoom));
67 SVGImageForContainer(SVGImage* image, const FloatSize& containerSize, float zoom) argument
68 : m_image(image)
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCursorInfo.cpp44 , customImage(cursor.image())
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebImage.h55 WebImage(const WebImage& image) argument
58 assign(image);
61 WebImage& operator=(const WebImage& image) argument
63 assign(image);
67 // Decodes the given image data. If the image has multiple frames,
72 // Returns a list of all frames in the image. Only the first frame at each pixel
/external/chromium_org/third_party/libva/va/wayland/
H A Dva_backend_wayland.h56 /** \brief Hook to return Wayland buffer associated with the VA image. */
59 VAImageID image,
H A Dva_wayland.h99 * \brief Returns the Wayland buffer associated with a VA image.
103 * underlying VA @image. As such, the VA @image and Wayland
112 * @param[in] image the VA image
114 * @param[out] out_buffer a wl_buffer wrapping the VA @image
120 VAImageID image,
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawShader.cpp48 SK_MEMBER(image, BaseBitmap)
55 SkDrawBitmapShader::SkDrawBitmapShader() : filterBitmap(-1), image(NULL) {}
66 if (image == NULL)
75 SkShader* shader = SkShader::CreateBitmapShader(image->fBitmap,
H A DSkDrawShader.h23 SkBaseBitmap* image; member in class:SkDrawBitmapShader
/external/chromium_org/third_party/skia/src/image/
H A DSkImagePriv.cpp57 SkImage* image = NULL; local
59 image = SkNewImageFromPixelRef(info, bm.pixelRef(), bm.rowBytes());
63 image = SkImage::NewRasterCopy(info, bm.getPixels(), bm.rowBytes());
67 return image;
H A DSkImagePriv.h14 // Call this if you explicitly want to use/share this pixelRef in the image
34 // Given an image created from SkNewImageFromBitmap, return its pixelref. This
35 // may be called to see if the surface and the image share the same pixelref,
39 // Given an image created with NewTexture, return its GrTexture. This
40 // may be called to see if the surface and the image share the same GrTexture,
44 // Update the texture wrapped by an image created with NewTexture. This
45 // is called when a surface and image share the same GrTexture and the
47 extern void SkTextureImageSetTexture(SkImage* image, GrTexture* texture);
H A DSkSurface.cpp36 SkImage* image = this->newImageSnapshot(); local
37 if (image) {
38 image->draw(canvas, x, y, paint);
39 image->unref();
50 // the cached image. Note: we only call if there is an outstanding owner
51 // on the image (besides us).
56 // regardless of copy-on-write, we must drop our cached image now, so
108 SkImage* image = asSB(this)->getCachedImage(); local
109 SkSafeRef(image); // the caller will call unref() to balance this
110 return image;
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Daudio_player.css49 background-image: -webkit-image-set(
56 background-image: -webkit-image-set(
71 background-image: -webkit-image-set(
184 background-image: -webkit-image-set(
255 background-image: -webkit-image
[all...]
/external/chromium_org/ui/views/window/
H A Dframe_background.h32 // Sets the theme image for the top of the window. May be NULL.
34 void set_theme_image(const gfx::ImageSkia* image) { theme_image_ = image; } argument
36 // Sets an image that overlays the top window image. Usually used to add
39 void set_theme_overlay_image(gfx::ImageSkia* image) { argument
40 theme_overlay_image_ = image;
47 // Vertical inset for theme image when drawing maximized.
94 // Vertical inset for theme image when drawing maximized.
/external/eigen/doc/examples/
H A DTutorialLinAlgRankRevealing.cpp19 << lu_decomp.image(A) << endl; // yes, have to pass the original A
/external/oprofile/libpp/
H A Dimage_errors.cpp28 void report_image_error(string const & image, image_error error, bool fatal, argument
34 string image_name = extra.get_archive_path() + image;
41 if (error == image_not_found && is_prefix(image, "anon "))
75 report_image_error(profile.image, profile.error, fatal, extra);
/external/skia/src/animator/
H A DSkDrawShader.cpp48 SK_MEMBER(image, BaseBitmap)
55 SkDrawBitmapShader::SkDrawBitmapShader() : filterBitmap(-1), image(NULL) {}
66 if (image == NULL)
75 SkShader* shader = SkShader::CreateBitmapShader(image->fBitmap,
H A DSkDrawShader.h23 SkBaseBitmap* image; member in class:SkDrawBitmapShader
/external/skia/src/image/
H A DSkImagePriv.cpp57 SkImage* image = NULL; local
59 image = SkNewImageFromPixelRef(info, bm.pixelRef(), bm.rowBytes());
63 image = SkImage::NewRasterCopy(info, bm.getPixels(), bm.rowBytes());
67 return image;
H A DSkImagePriv.h14 // Call this if you explicitly want to use/share this pixelRef in the image
34 // Given an image created from SkNewImageFromBitmap, return its pixelref. This
35 // may be called to see if the surface and the image share the same pixelref,
39 // Given an image created with NewTexture, return its GrTexture. This
40 // may be called to see if the surface and the image share the same GrTexture,
44 // Update the texture wrapped by an image created with NewTexture. This
45 // is called when a surface and image share the same GrTexture and the
47 extern void SkTextureImageSetTexture(SkImage* image, GrTexture* texture);
/external/chromium_org/base/debug/
H A Dprofiler.cc115 base::win::PEImage image(this_module);
117 // Check to be sure our image is structured as we'd expect.
118 DCHECK(image.VerifyMagic());
120 // Syzygy-instrumented binaries contain a PE image section named ".thunks",
121 // and all Syzygy-modified binaries contain the ".syzygy" image section.
122 // This is a very fast check, as it only looks at the image header.
123 if ((image.GetImageSectionHeaderByName(".thunks") != NULL) &&
124 (image.GetImageSectionHeaderByName(".syzygy") != NULL)) {
144 const base::win::PEImage &image, const char* module_name,
186 base::win::PEImage image(this_modul
143 FindResolutionFunctionInImports( const base::win::PEImage &image, const char* module_name, PIMAGE_THUNK_DATA unused_name_table, PIMAGE_THUNK_DATA import_address_table, PVOID cookie) argument
[all...]
/external/chromium_org/chrome/browser/webdata/
H A Dweb_apps_table.cc53 "image BLOB, UNIQUE (url, width, height))")) {
77 bool WebAppsTable::SetWebAppImage(const GURL& url, const SkBitmap& image) { argument
82 "(url, width, height, image) VALUES (?, ?, ?, ?)"));
84 gfx::PNGCodec::EncodeBGRASkBitmap(image, false, &image_data);
86 s.BindInt(1, image.width());
87 s.BindInt(2, image.height());
96 "SELECT image FROM web_app_icons WHERE url=?"));
100 SkBitmap image; local
105 col_bytes, &image)) {
106 images->push_back(image);
[all...]
/external/chromium_org/pdf/
H A Dnumber_image_generator.cc34 int page_number, pp::ImageData* image) {
46 *image = pp::ImageData(
57 CopyImage(number_background_, src_rc, image, dest_rc, false);
59 dest_rc.Offset(image->size().width() - stretch_point, 0);
60 CopyImage(number_background_, src_rc, image, dest_rc, false);
64 CopyImage(number_background_, src_rc, image, dest_rc, true);
73 image, pp::Rect(origin, number_images_[index].size()), false);
33 GenerateImage( int page_number, pp::ImageData* image) argument
/external/chromium_org/ppapi/examples/font/
H A Dsimple_font.cc30 pp::ImageData image(this, PP_IMAGEDATAFORMAT_BGRA_PREMUL, last_size_, true);
41 font.DrawTextAt(&image,
52 &image, DescribeFont(default_font, "Default font"),
61 &image, DescribeFont(serif_font, "Serif font"),
70 &image, DescribeFont(sans_serif_font, "Sans serif font"),
79 &image, DescribeFont(monospace_font, "Monospace font"),
84 graphics.PaintImageData(image, pp::Point(0, 0));
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DBooleanObjectPropertyEditor.java52 Image image = booleanValue ? m_trueImage : m_falseImage;
54 paint(gc, x, y, width, height, text, image);
57 Image image = m_nullImage;
59 paint(gc, x, y, width, height, text, image);
63 private void paint(GC gc, int x, int y, int width, int height, String text, Image image) { argument
64 // draw image
66 DrawUtils.drawImageCV(gc, image, x, y, height);
68 int imageWidth = image.getBounds().width + 2;
86 // check that user clicked on image

Completed in 2182 milliseconds

1234567891011>>