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

1234567891011>>

/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/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.h13 // Call this if you explicitly want to use/share this pixelRef in the image
33 // Given an image created from SkNewImageFromBitmap, return its pixelref. This
34 // may be called to see if the surface and the image share the same pixelref,
38 // Given an image created with NewTexture, return its GrTexture. This
39 // may be called to see if the surface and the image share the same GrTexture,
43 // Update the texture wrapped by an image created with NewTexture. This
44 // is called when a surface and image share the same GrTexture and the
46 extern void SkTextureImageSetTexture(SkImage* image, GrTexture* texture);
/external/chromium_org/ui/chromeos/network/
H A Dnetwork_info.h12 #include "ui/gfx/image/image_skia.h"
29 gfx::ImageSkia image; member in struct:ui::NetworkInfo
/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);
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/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/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
/external/ceres-solver/examples/
H A Ddenoising.cc55 DEFINE_string(input, "", "File to which the output image should be written");
57 DEFINE_string(output, "", "File to which the output image should be written");
90 const PGMImage<double>& image,
96 for (unsigned index = 0; index < image.NumPixels(); ++index) {
99 image.PixelFromLinearIndex(index));
114 // Add FoE regularization for each patch in the image.
115 for (int x = 0; x < image.width() - (foe.Size() - 1); ++x) {
116 for (int y = 0; y < image.height() - (foe.Size() - 1); ++y) {
176 usage("This program denoises an image using Ceres. Sample usage:\n");
178 usage += " --input=<noisy image PG
89 CreateProblem(const FieldsOfExperts& foe, const PGMImage<double>& image, Problem* problem, PGMImage<double>* solution) argument
[all...]
/external/chromium_org/chrome/browser/bitmap_fetcher/
H A Dbitmap_fetcher_browsertest.cc96 SkBitmap image; local
98 // Put a real bitmap into "image". 2x2 bitmap of green 32 bit pixels.
99 image.allocN32Pixels(2, 2);
100 image.eraseColor(SK_ColorGREEN);
104 ASSERT_TRUE(gfx::PNGCodec::EncodeBGRASkBitmap(image, true, &compressed));
117 // We expect that the image decoder will get called and return
118 // an image in a callback to OnImageDecoded().
132 EXPECT_TRUE(gfx::BitmapsAreEqual(image, found_image));
137 SkBitmap image; local
139 // Put a real bitmap into "image"
[all...]
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dmost_visited_thumbnail.js41 // Creates and adds an image.
43 var image = document.createElement('img');
44 image.onload = function() {
48 // Use blocker to prevent context menu from showing image-related items.
52 link.appendChild(image);
55 image.onerror = function() {
66 image.src = src;
/external/chromium_org/chrome/browser/ui/views/status_icons/
H A Dstatus_tray_win_unittest.cc17 #include "ui/gfx/image/image_skia.h"
71 gfx::ImageSkia* image = rb.GetImageSkiaNamed(IDR_STATUS_TRAY_ICON); local
73 StatusTray::OTHER_ICON, *image, base::ASCIIToUTF16("tool tip"));
84 gfx::ImageSkia* image = rb.GetImageSkiaNamed(IDR_STATUS_TRAY_ICON); local
87 StatusTray::OTHER_ICON, *image, base::ASCIIToUTF16("tool tip")));
102 gfx::ImageSkia* image = rb.GetImageSkiaNamed(IDR_STATUS_TRAY_ICON); local
105 StatusTray::OTHER_ICON, *image, base::ASCIIToUTF16("tool tip")));
118 gfx::ImageSkia* image = rb.GetImageSkiaNamed(IDR_STATUS_TRAY_ICON); local
121 StatusTray::OTHER_ICON, *image, base::ASCIIToUTF16("tool tip")));
133 gfx::ImageSkia* image local
[all...]
/external/libunwind/src/ia64/
H A DGfind_unwind_table.c39 Elf64_Ehdr *ehdr = edi->ei.image;
50 Elf64_Dyn *dyn = (Elf64_Dyn *) (pdyn->p_offset + (char *) edi->ei.image);
69 Debug (1, "section table outside of image? (%lu > %lu)",
75 shdr = (Elf64_Shdr *) ((char *) edi->ei.image + soff);
76 str_shdr = (Elf64_Shdr *) ((char *) edi->ei.image + str_soff);
77 strtab = (char *) edi->ei.image + str_shdr->sh_offset;
83 gp = ((Elf64_Addr *) ((char *) edi->ei.image + shdr->sh_offset))[1];
90 Debug (16, "image at %p, gp = %lx\n", edi->ei.image, gp);
106 ehdr = edi->ei.image;
[all...]

Completed in 4712 milliseconds

1234567891011>>