HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 151 - 175 of 537) sorted by null

1 2 3 4 5 67 8 91011>>

  /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...]
CSSImageGeneratorValue.cpp 29 #include "Image.h"
81 Image* CSSImageGeneratorValue::getImage(RenderObject* renderer, const IntSize& size)
93 // Don't generate an image for empty sizes.
97 // Look up the image in our cache.
101 void CSSImageGeneratorValue::putImage(const IntSize& size, PassRefPtr<Image> image)
103 m_images.add(size, image);
  /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);
  /sdk/draw9patch/src/com/android/draw9patch/ui/
OpenFilePanel.java 6 import java.awt.image.BufferedImage;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
CaptureLoader.java 25 import java.awt.Image;
27 import java.awt.image.BufferedImage;
113 // Ensure the image is in the right format
114 BufferedImage image = new BufferedImage(chunk.getWidth(), chunk.getHeight(), local
116 Graphics2D g = image.createGraphics();
120 psd.addLayer(name, image, new Point(x, y), visible);
129 public static Image loadCapture(IDevice device, Window window, String params) {
  /cts/tools/annotation-helper/src/spechelper/
MyCompletion.java 22 import org.eclipse.swt.graphics.Image;
32 private Image m_img;
39 Image image, String displayString,
46 m_img = image;
76 public Image getImage() {
  /external/qemu/android/skin/
file.h 15 #include "android/skin/image.h"
23 SkinImage* image; member in struct:SkinBackground
38 SkinImage* image; member in struct:SkinButton
  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_QWin.h 62 void setImage(QImage *image);
70 QImage *image(void) { return my_image; } function in class:SDL_QWin

Completed in 1850 milliseconds

1 2 3 4 5 67 8 91011>>