Searched defs:image (Results 126 - 150 of 902) sorted by relevance

1234567891011>>

/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/chromium_org/chrome/installer/test/
H A Dpe_image_resources.cc26 // Recursive function for enumerating entries in an image's resource segment.
29 const base::win::PEImage& image, const uint8* tree_base, DWORD tree_size,
79 success = EnumResourcesWorker(image, tree_base, tree_size,
87 image.RVAToAddr(data_entry->OffsetToData)) + data_entry->Size <=
92 reinterpret_cast<uint8*>(image.RVAToAddr(data_entry->OffsetToData)),
110 bool EnumResources(const base::win::PEImage& image, EnumResource_Fn callback, argument
113 image.GetImageDirectoryEntrySize(IMAGE_DIRECTORY_ENTRY_RESOURCE);
117 image,
119 image.GetImageDirectoryEntryAddr(IMAGE_DIRECTORY_ENTRY_RESOURCE)),
28 EnumResourcesWorker( const base::win::PEImage& image, const uint8* tree_base, DWORD tree_size, DWORD directory_offset, upgrade_test::EntryPath* path, upgrade_test::EnumResource_Fn callback, uintptr_t context) argument
/external/chromium_org/chrome/installer/util/
H A Dl10n_string_util.cc47 const ATLSTRINGRESOURCEIMAGE* image = AtlGetStringResourceImage( local
49 if (image) {
50 localized_string = std::wstring(image->achString, image->nLength);
/external/chromium_org/components/favicon_base/
H A Dfavicon_util.cc17 #include "ui/gfx/image/image_png_rep.h"
18 #include "ui/gfx/image/image_skia.h"
28 // Creates image reps of DIP size |favicon_size| for the subset of
29 // |favicon_scales| for which the image reps can be created without resizing
154 void SetFaviconColorSpace(gfx::Image* image) { argument
156 image->SetSourceColorSpace(base::mac::GetSystemColorSpace());
164 // Create image reps for as many scales as possible without resizing
/external/chromium_org/gpu/gles2_conform_support/native/
H A Degl_native.cc29 void GTFDestroyEGLImageExternal(EGLImageKHR image, void* resource) { argument
H A Degl_native_win.cc114 void GTFDestroyEGLImage(EGLImageKHR image) { argument
/external/chromium_org/media/tools/player_x11/
H A Dx11_video_renderer.cc124 // If XRender is used, we'll upload the image to a pixmap. And then
129 XImage image; local
130 memset(&image, 0, sizeof(image));
131 image.width = coded_width;
132 image.height = coded_height;
133 image.depth = 32;
134 image.bits_per_pixel = 32;
135 image.format = ZPixmap;
136 image
[all...]
/external/chromium_org/ppapi/cpp/
H A Dgraphics_2d.cc71 void Graphics2D::PaintImageData(const ImageData& image, argument
75 image.pp_resource(),
80 image.pp_resource(),
86 void Graphics2D::PaintImageData(const ImageData& image, argument
91 image.pp_resource(),
96 image.pp_resource(),
114 void Graphics2D::ReplaceContents(ImageData* image) { argument
117 image->pp_resource());
120 image->pp_resource());
125 // On success, reset the image dat
[all...]
/external/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc15 void FillRect(pp::ImageData* image, int left, int top, int width, int height, argument
18 y < std::min(image->size().height() - 1, top + height);
21 x < std::min(image->size().width() - 1, left + width);
23 *image->GetAddr32(pp::Point(x, y)) = color;
63 // Next part gets custom image cursor.
/external/chromium_org/printing/
H A Dimage.cc5 #include "printing/image.h"
46 Image::Image(const Image& image) argument
47 : size_(image.size_),
48 row_length_(image.row_length_),
49 data_(image.data_),
50 ignore_alpha_(image.ignore_alpha_) {
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DPasteboard.cpp81 void Pasteboard::writeImage(Image* image, const KURL& url, const String& title) argument
83 ASSERT(image);
85 RefPtr<NativeImageSkia> bitmap = image->nativeImageForCurrentFrame();
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCanvasValue.cpp90 PassRefPtr<Image> CSSCanvasValue::image(RenderObject* renderer, const IntSize& /*size*/) function in class:blink::CSSCanvasValue
H A DCSSImageGeneratorValue.cpp112 // Don't generate an image for empty sizes.
116 // Look up the image in our cache.
120 void CSSImageGeneratorValue::putImage(const IntSize& size, PassRefPtr<Image> image) argument
122 m_images.add(size, image);
125 PassRefPtr<Image> CSSImageGeneratorValue::image(RenderObject* renderer, const IntSize& size) function in class:blink::CSSImageGeneratorValue
129 return toCSSCanvasValue(this)->image(renderer, size);
131 return toCSSCrossfadeValue(this)->image(renderer, size);
133 return toCSSLinearGradientValue(this)->image(renderer, size);
135 return toCSSRadialGradientValue(this)->image(renderer, size);
H A DCSSImageSetValue.cpp68 ImageWithScale image; local
69 image.imageURL = imageURL;
70 image.referrer = imageValue->referrer();
71 image.scaleFactor = scaleFactor;
72 m_imagesInSet.append(image);
82 ImageWithScale image; local
85 image = m_imagesInSet.at(i);
86 if (image.scaleFactor >= m_scaleFactor)
87 return image;
89 return image;
105 ImageWithScale image = bestImageForScaleFactor(); local
[all...]
H A DCSSImageValue.cpp36 CSSImageValue::CSSImageValue(const String& rawValue, const KURL& url, StyleImage* image) argument
40 , m_image(image)
41 , m_accessedImage(image)
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResourceLoader.cpp105 StyleImage* image = shapeValue->image();
106 if (!image || !image->isPendingImage())
114 shapeValue->setImage(doLoadPendingImage(m_fetcher, toStylePendingImage(image), deviceScaleFactor, options));
129 if (backgroundLayer->image() && backgroundLayer->image()->isPendingImage())
130 backgroundLayer->setImage(loadPendingImage(toStylePendingImage(backgroundLayer->image()), elementStyleResources.deviceScaleFactor()));
137 StyleImage* image = toImageContentData(contentData)->image(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceLoadPriorityOptimizer.cpp46 ResourceLoadPriorityOptimizer::ResourceAndVisibility::ResourceAndVisibility(ImageResource* image, VisibilityStatus visibilityStatus, uint32_t screenArea) argument
47 : imageResource(image)
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShapeValue.h60 static PassRefPtr<ShapeValue> createImageValue(PassRefPtr<StyleImage> image) argument
62 return adoptRef(new ShapeValue(image));
68 StyleImage* image() const { return m_image.get(); } function in class:blink::ShapeValue
71 if (!image())
73 if (image()->isImageResource() || image()->isImageResourceSet())
74 return image()->cachedImage() && image()->cachedImage()->hasImage();
75 return image()->isGeneratedImage();
77 void setImage(PassRefPtr<StyleImage> image) argument
99 ShapeValue(PassRefPtr<StyleImage> image) argument
[all...]
H A DStyleFetchedImage.cpp33 StyleFetchedImage::StyleFetchedImage(ImageResource* image) argument
34 : m_image(image)
105 PassRefPtr<Image> StyleFetchedImage::image(RenderObject* renderer, const IntSize&) const function in class:blink::StyleFetchedImage
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebImageSkia.cpp38 #include "platform/image-decoders/ImageDecoder.h"
87 RefPtr<NativeImageSkia> image = frame->asNewNativeImage();
88 if (!image)
91 return WebImage(image->bitmap());
124 RefPtr<NativeImageSkia> image = frame->asNewNativeImage(); local
125 if (image && image->isDataComplete())
126 frames.append(WebImage(image->bitmap()));
137 void WebImage::assign(const WebImage& image) argument
139 m_bitmap = image
152 WebImage(const PassRefPtr<Image>& image) argument
157 operator =(const PassRefPtr<Image>& image) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEMorphology.cpp113 RefPtr<Image> image = in->asImageBuffer()->copyImage(DontCopyBackingStore); local
124 dstContext->drawImage(image.get(), drawingRegion.location(), CompositeCopy);
/external/chromium_org/third_party/libjpeg_turbo/
H A Dwrrle.c38 * Since RLE stores scanlines bottom-to-top, we have to invert the image
56 jvirt_sarray_ptr image; /* virtual array to store the output image */ member in struct:__anon12781
87 * Make sure the image can be stored in RLE format.
89 * - RLE stores image dimensions as *signed* 16 bit integers. JPEG
133 ((j_common_ptr) cinfo, dest->image, (JDIMENSION) 0, (JDIMENSION) 1, TRUE);
160 ((j_common_ptr) cinfo, dest->image,
201 /* Add a comment to the output image with the true colormap length. */
225 ((j_common_ptr) cinfo, dest->image,
239 ((j_common_ptr) cinfo, dest->image,
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dtextblit.c55 static void plot (const int x, const int y, unsigned char *image, const int pitch) argument
57 image [x+y*pitch] ^= 255;
61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch) argument
106 plot(y,x, image, pitch);
120 plot(x,y, image, pitch);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_textblit.c27 static void plot(int x, int y, unsigned char *image, int pitch) { argument
28 image[x + y * pitch] ^= 255;
60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, argument
101 plot(y, x, image, pitch);
111 plot(x, y, image, pitch);
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglimage.h63 /* An image is a display resource */
78 * Increment reference count for the image.
90 * Decrement reference count for the image.
100 * Link an image to its display and return the handle of the link.
112 * Unlink a linked image from its display.
113 * Accessing an unlinked image should generate EGL_BAD_PARAMETER error.
123 * Lookup a handle to find the linked image.
124 * Return NULL if the handle has no corresponding linked image.
127 _eglLookupImage(EGLImageKHR image, _EGLDisplay *dpy) argument
129 _EGLImage *img = (_EGLImage *) image;
[all...]

Completed in 5608 milliseconds

1234567891011>>