/external/webkit/WebKit/mac/Misc/ |
WebNSViewExtras.m | 165 NSImage *image = [element image]; 166 if (image != nil && [image size].height * [image size].width <= WebMaxOriginalImageArea) { 170 dragImage = [[image copy] autorelease]; 179 // Properly orient the drag image and orient it differently if it's smaller than the original 185 // There's no way to get the MIME type for the image from a DOM element. 186 // The old code used WKGetPreferredExtensionForMIMEType([image MIMEType]); 193 // This is the offset from the lower left corner of the image to the mouse location. Because w [all...] |
/external/webkit/WebCore/inspector/front-end/ |
inspector.css | 74 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151))); 82 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 233, 233)), to(rgb(207, 207, 207))); 121 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2; 196 background-image: url(Images/elementsIcon.png); 200 background-image: url(Images/resourcesIcon.png); 204 background-image: url(Images/scriptsIcon.png); 208 background-image: url(Images/timelineIcon.png); 212 background-image: url(Images/storageIcon.png); 216 background-image: url(Images/profilesIcon.png); 220 background-image: url(Images/consoleIcon.png) [all...] |
audits.css | 50 -webkit-mask-image: url(Images/clearConsoleButtonGlyph.png); 97 background-image: none; 111 background-image: none; 214 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 252, 252)), to(rgb(223, 223, 223))); 228 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(194, 194, 194)), to(rgb(239, 239, 239))); 235 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(250, 250, 250)), to(rgb(235, 235, 235))); 258 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 252, 252)), to(rgb(223, 223, 223))); 266 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(194, 194, 194)), to(rgb(239, 239, 239)));
|
/development/ide/xcode/ports/ |
SkBitmap_Mac.cpp | 126 CGImageRef image = bitmap2imageref(bm); local 127 if (image) { 133 CGContextDrawImage(cg, rect, image); 134 CGImageRelease(image);
|
/external/e2fsprogs/lib/ |
Makefile.elf-lib | 14 all:: image 23 image: $(ELF_LIB)
|
Makefile.solaris-lib | 14 all:: image 23 image: $(ELF_LIB)
|
/external/libpcap/ |
bpf_image.c | 47 static char image[256]; local 281 (void)snprintf(image, sizeof image, 287 return image;
|
/external/skia/src/gl/ |
SkGLTextCache.h | 71 Strike* addGlyphAndBind(const SkGlyph&, const uint8_t image[], int* offset);
|
/external/skia/src/utils/mac/ |
SkBitmap_Mac.cpp | 126 CGImageRef image = bitmap2imageref(bm); local 127 if (image) { 133 CGContextDrawImage(cg, rect, image); 134 CGImageRelease(image);
|
/external/webkit/WebCore/css/ |
CSSImageGeneratorValue.h | 37 class Image; 47 virtual Image* image(RenderObject*, const IntSize&) = 0; 57 Image* getImage(RenderObject*, const IntSize&); 58 void putImage(const IntSize&, PassRefPtr<Image>); 63 HashCountedSet<IntSize> m_sizes; // A count of how many times a given image size is in use. 64 RenderObjectSizeCountMap m_clients; // A map from RenderObjects (with entry count) to image sizes. 65 HashMap<IntSize, RefPtr<Image> > m_images; // A cache of Image objects by image size [all...] |
/external/webkit/WebCore/loader/icon/ |
IconRecord.cpp | 55 Image* IconRecord::image(const IntSize&) function in class:WebCore::IconRecord 57 // FIXME rdar://4680377 - For size right now, we are returning our one and only image and the Bridge 66 // It's okay to delete the raw image here. Any existing clients using this icon will be 67 // managing an image that was created with a copy of this raw image data. 70 // Copy the provided data into the buffer of the new Image object. 72 LOG(IconDatabase, "Manual image data for iconURL '%s' FAILED - it was probably invalid image data", m_iconURL.ascii().data()); 84 m_image = Image::loadPlatformResource(resource) [all...] |
/external/webkit/WebCore/platform/chromium/ |
PasteboardChromium.cpp | 41 #include "Image.h" 129 Image* image = cachedImage->image(); local 130 ASSERT(image); 132 // If the image is wrapped in a link, |url| points to the target of the 133 // link. This isn't useful to us, so get the actual image URL. 147 NativeImagePtr bitmap = image->nativeImageForCurrentFrame();
|
/external/webkit/WebCore/platform/graphics/filters/ |
SourceGraphic.cpp | 63 filterContext->drawImage(filter->sourceImage()->image(), DeviceColorSpace, IntPoint());
|
/external/webkit/WebCore/platform/graphics/haiku/ |
ImageBufferHaiku.cpp | 85 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer
|
/external/webkit/WebCore/platform/graphics/qt/ |
ImageQt.cpp | 32 #include "Image.h" 88 // Image Class 91 PassRefPtr<Image> Image::loadPlatformResource(const char* name) 96 void Image::drawPattern(GraphicsContext* ctxt, const FloatRect& tileRect, const AffineTransform& patternTransform, 100 if (!framePixmap) // If it's too early we won't have an image yet. 124 : Image(observer) 169 QPixmap* image = nativeImageForCurrentFrame(); local 170 if (!image) 187 if (!image->hasAlpha() && painter->compositionMode() == QPainter::CompositionMode_SourceOver [all...] |
/external/webkit/WebCore/platform/graphics/wx/ |
ImageBufferWx.cpp | 84 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer
|
/external/webkit/WebCore/platform/qt/ |
PasteboardQt.cpp | 34 #include "Image.h" 156 Image* image = cachedImage->image(); local 157 ASSERT(image); 159 QPixmap* pixmap = image->nativeImageForCurrentFrame();
|
/external/webkit/WebCore/rendering/style/ |
StyleGeneratedImage.h | 54 virtual Image* image(RenderObject*, const IntSize&) const;
|
StyleImage.h | 35 class Image; 61 virtual Image* image(RenderObject*, const IntSize&) const = 0;
|
/external/webkit/WebCore/svg/graphics/ |
SVGPaintServerPattern.cpp | 34 #include "Image.h" 116 IntRect tileRect = tile()->image()->rect(); 134 tileImageContext->drawImage(tile()->image(), style->colorSpace(), tileRect, tileRect); 140 m_pattern = Pattern::create(tileImage->image(), true, true); 143 m_pattern = Pattern::create(tile()->image(), true, true);
|
/frameworks/base/awt/java/awt/ |
GradientPaintContext.java | 25 import java.awt.image.ColorModel; 26 import java.awt.image.DataBufferInt; 27 import java.awt.image.Raster; 28 import java.awt.image.WritableRaster;
|
/frameworks/base/awt/java/awt/image/ |
Kernel.java | 24 package java.awt.image; 31 * pixel's position in the output image of a filtering operation. The X, Y
|
/frameworks/base/awt/javax/imageio/ |
ImageReadParam.java | 25 import java.awt.image.BufferedImage; 34 * image is to be decoded. 72 * Returns true if this ImageReaderParam supports rendering a source image 75 * @return true, if this ImageReaderParam supports rendering a source image 83 * Gets the current destination image as BufferedImage. 137 * Gets the dimension of source image which will be rendered during decoding 147 * Sets the specified destination image. This image will be used by read, 152 * the destination image. 187 * Sets the dimension size of source image if an image can be rendered at a [all...] |
/frameworks/base/awt/javax/imageio/event/ |
IIOReadUpdateListener.java | 24 import java.awt.image.BufferedImage; 35 * notification of pixel updates during image and thumbnail reading operations. 42 * Notifies this listener that the specified area of the image has been 48 * the image to be updated. 77 * the image to be updated. 88 * the image to be updated. 155 * Notifies this listener that a specified area of a thumbnail image has
|
/frameworks/base/awt/org/apache/harmony/awt/gl/image/ |
FileDecodingImageSource.java | 24 package org.apache.harmony.awt.gl.image;
|