Searched defs:image (Results 151 - 175 of 929) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/views/status_icons/
H A Dstatus_tray_win.cc130 const gfx::ImageSkia& image,
144 icon->SetImage(image);
128 CreatePlatformStatusIcon( StatusTray::StatusIconType type, const gfx::ImageSkia& image, const base::string16& tool_tip) argument
/external/chromium_org/chrome/browser/webdata/
H A Dweb_apps_table.cc55 "image BLOB, UNIQUE (url, width, height))")) {
79 bool WebAppsTable::SetWebAppImage(const GURL& url, const SkBitmap& image) { argument
84 "(url, width, height, image) VALUES (?, ?, ?, ?)"));
86 gfx::PNGCodec::EncodeBGRASkBitmap(image, false, &image_data);
88 s.BindInt(1, image.width());
89 s.BindInt(2, image.height());
98 "SELECT image FROM web_app_icons WHERE url=?"));
102 SkBitmap image; local
107 col_bytes, &image)) {
108 images->push_back(image);
[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);
116 image,
118 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/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.cc121 // If XRender is used, we'll upload the image to a pixmap. And then
126 XImage image; local
127 memset(&image, 0, sizeof(image));
128 image.width = coded_width;
129 image.height = coded_height;
130 image.depth = 32;
131 image.bits_per_pixel = 32;
132 image.format = ZPixmap;
133 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/css/
H A DCSSImageGeneratorValue.cpp96 // Don't generate an image for empty sizes.
100 // Look up the image in our cache.
104 void CSSImageGeneratorValue::putImage(const IntSize& size, PassRefPtr<Image> image) argument
106 m_images.add(size, image);
109 PassRefPtr<Image> CSSImageGeneratorValue::image(RenderObject* renderer, const IntSize& size) function in class:WebCore::CSSImageGeneratorValue
113 return toCSSCanvasValue(this)->image(renderer, size);
115 return toCSSCrossfadeValue(this)->image(renderer, size);
117 return toCSSLinearGradientValue(this)->image(renderer, size);
119 return toCSSRadialGradientValue(this)->image(renderer, size);
H A DCSSImageSetValue.cpp68 ImageWithScale image; local
69 image.imageURL = imageURL;
70 image.scaleFactor = scaleFactor;
71 m_imagesInSet.append(image);
81 ImageWithScale image; local
84 image = m_imagesInSet.at(i);
85 if (image.scaleFactor >= m_scaleFactor)
86 return image;
88 return image;
104 ImageWithScale image local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DImageBitmap.cpp29 static inline PassRefPtr<Image> cropImage(Image* image, const IntRect& cropRect) argument
31 IntRect intersectRect = intersection(IntRect(IntPoint(), image->size()), cropRect);
36 image->nativeImageForCurrentFrame()->bitmap().extractSubset(&cropped, intersectRect);
40 ImageBitmap::ImageBitmap(HTMLImageElement* image, const IntRect& cropRect) argument
41 : m_imageElement(image)
45 IntRect srcRect = intersection(cropRect, IntRect(0, 0, image->width(), image->height()));
135 ImageBitmap::ImageBitmap(Image* image, const IntRect& cropRect) argument
139 IntRect srcRect = intersection(cropRect, IntRect(IntPoint(), image->size()));
140 m_bitmap = cropImage(image, cropRec
152 create(HTMLImageElement* image, const IntRect& cropRect) argument
182 create(Image* image, const IntRect& cropRect) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DPasswordGeneratorButtonElement.cpp75 ImageResource* image = m_isInHoverState ? imageForHoverState() : imageForNormalState(); local
76 ASSERT(image);
77 resource->setImageResource(image);
95 RenderImage* image = new RenderImage(this); local
96 image->setImageResource(RenderImageResource::create());
97 return image;
109 RefPtr<Image> image = Image::loadPlatformResource("generatePassword"); local
110 m_cachedImageForNormalState = new ImageResource(image.get());
118 RefPtr<Image> image = Image::loadPlatformResource("generatePasswordHover"); local
119 m_cachedImageForHoverState = new ImageResource(image
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/
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/rendering/style/
H A DShapeValue.h66 static PassRefPtr<ShapeValue> createImageValue(PassRefPtr<StyleImage> image) argument
68 return adoptRef(new ShapeValue(image));
74 StyleImage* image() const { return m_image.get(); } function in class:WebCore::ShapeValue
75 bool isImageValid() const { return image() && image()->cachedImage() && image()->cachedImage()->hasImage(); }
76 void setImage(PassRefPtr<StyleImage> image) argument
79 if (m_image != image)
80 m_image = image;
99 ShapeValue(PassRefPtr<StyleImage> image) argument
[all...]
H A DStyleFetchedImage.cpp32 StyleFetchedImage::StyleFetchedImage(ImageResource* image) argument
33 : m_image(image)
104 PassRefPtr<Image> StyleFetchedImage::image(RenderObject* renderer, const IntSize&) const function in class:WebCore::StyleFetchedImage
H A DStylePendingImage.h62 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const function in class:WebCore::StylePendingImage
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFEImage.cpp40 FEImage::FEImage(Filter* filter, PassRefPtr<Image> image, const SVGPreserveAspectRatio& preserveAspectRatio) argument
42 , m_image(image)
56 PassRefPtr<FEImage> FEImage::createWithImage(Filter* filter, PassRefPtr<Image> image, const SVGPreserveAspectRatio& preserveAspectRatio) argument
58 return adoptRef(new FEImage(filter, image, preserveAspectRatio));
152 ts << " image-size=\"" << imageSize.width() << "x" << imageSize.height() << "\"]\n";
153 // FIXME: should this dump also object returned by SVGFEImage::image() ?
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebImageSkia.cpp38 #include "platform/image-decoders/ImageDecoder.h"
89 RefPtr<NativeImageSkia> image = frame->asNewNativeImage();
90 if (!image)
93 return WebImage(image->bitmap());
126 RefPtr<NativeImageSkia> image = frame->asNewNativeImage(); local
127 if (image && image->isDataComplete())
128 frames.append(WebImage(image->bitmap()));
139 void WebImage::assign(const WebImage& image) argument
141 m_bitmap = image
154 WebImage(const PassRefPtr<Image>& image) argument
159 operator =(const PassRefPtr<Image>& image) argument
[all...]
/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...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dmemory.cpp117 image::image(clover::context &ctx, cl_mem_flags flags, function in class:image
128 image::resource(cl_command_queue q) {
144 image::format() const {
149 image::width() const {
154 image::height() const {
159 image::depth() const {
164 image::row_pitch() const {
169 image::slice_pitch() const {
177 image(ct
[all...]
H A Dmemory.hpp107 struct image : public memory_obj { struct in namespace:clover
109 image(clover::context &ctx, cl_mem_flags flags,
135 struct image2d : public image {
145 struct image3d : public image {
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_masks.c61 struct vg_image *image = handle_to_image(mask); local
62 mask_using_image(image, operation, x, y, width, height);
H A Dapi_text.c103 VGImage image,
121 if (image != VG_INVALID_HANDLE &&
122 !vg_context_is_object_valid(ctx, VG_OBJECT_IMAGE, image)) {
127 img_obj = handle_to_image(image);
101 vegaSetGlyphToImage(VGFont font, VGuint glyphIndex, VGImage image, const VGfloat glyphOrigin[2], const VGfloat escapement[2]) argument
/external/chromium_org/third_party/mesa/src/src/gbm/backends/dri/
H A Dgbm_driint.h50 __DRIimageExtension *image; member in struct:gbm_dri_device
57 __DRIimage *(*lookup_image)(__DRIscreen *screen, void *image, void *data);
74 __DRIimage *image; member in struct:gbm_dri_bo

Completed in 515 milliseconds

1234567891011>>