HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 176 - 200 of 289) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/services/surfaceflinger/
Layer.h 155 Image texture;
167 static status_t destroyTexture(Image* tex, EGLDisplay dpy);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
RepoSourcesAdapter.java 33 import org.eclipse.swt.graphics.Image;
113 /** Returns an image appropriate for this element. */
115 public Image getImage(Object element) {
  /external/webkit/WebCore/rendering/
RenderBoxModelObject.cpp 94 static bool shouldPaintBackgroundAtLowQuality(GraphicsContext*, RenderBoxModelObject*, Image*, const IntSize&);
117 bool RenderBoxModelScaleObserver::shouldPaintBackgroundAtLowQuality(GraphicsContext* context, RenderBoxModelObject* object, Image* image, const IntSize& size)
119 // If the image is not a bitmap image, then none of this is relevant and we just paint at high
121 if (!image || !image->isBitmapImage())
124 // Make sure to use the unzoomed image size, since if a full page zoom is in effect, the image
126 IntSize imageSize(image->width(), image->height())
606 Image* image = bg->image(clientForBackgroundImage, tileSize); local
626 StyleImage* image = fillLayer->image(); local
847 Image* image = styleImage->image(this, imageSize); local
    [all...]
RenderImage.cpp 63 RenderImageScaleData(RenderImage* image, const IntSize& size, double time, bool lowQualityScale)
67 , m_highQualityRepaintTimer(image, &RenderImage::highQualityRepaintTimerFired)
102 static void imageDestroyed(RenderImage* image)
105 RenderImageScaleData* data = gImages->take(image);
114 static void highQualityRepaintTimerFired(RenderImage* image)
116 RenderImageScaleObserver::imageDestroyed(image);
117 image->repaint();
123 bool RenderImageScaleObserver::shouldImagePaintAtLowQuality(RenderImage* image, const IntSize& size)
125 // If the image is not a bitmap image, then none of this is relevant and we just paint at hig
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
HeapPanel.java 35 import org.eclipse.swt.graphics.Image;
149 /** Image used for the hilbert display. Since we recreate a new image every time, we
151 private Image mHilbertImage;
152 private Image mLinearImage;
1224 Image image; local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
Resource.js 101 Image: 2,
120 case this.Image:
121 return WebInspector.UIString("image");
391 case WebInspector.Resource.Type.Image:
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 38 import org.eclipse.swt.graphics.Image;
61 private Image mMatchIcon;
62 private Image mErrorIcon;
  /external/webkit/WebCore/platform/chromium/
CursorChromium.cpp 41 Cursor::Cursor(Image* image, const IntPoint& hotSpot)
42 : m_impl(image, hotSpot)
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/
BitmapImage.h 31 #include "Image.h"
86 // Clear the cached image data on the frame, and (optionally) the metadata.
87 // Returns whether there was cached image data to clear.
101 class BitmapImage : public Image {
126 // we start and stop animating lazily. Animation begins whenever someone draws the image. It will
127 // automatically pause once all observers no longer want to render the image anywhere.
134 // Accessors for native image formats.
164 Uncertain, // We have a repetition count, but it might be wrong (some GIFs have a count after the image data, and will report "loop once" until all data has been decoded).
196 // the entire frame buffer cache and tell the image source to destroy
197 // everything; this is used when e.g. we want to free some room in the image
    [all...]
GraphicsContext3D.h 67 class Image;
549 int texImage2D(unsigned target, unsigned level, Image* image, bool flipY, bool premultiplyAlpha);
555 int texSubImage2D(unsigned target, unsigned level, unsigned xoffset, unsigned yoffset, Image* image, bool flipY, bool premultiplyAlpha);
  /external/webkit/WebCore/platform/graphics/cg/
PDFDocumentImage.cpp 45 : Image(0) // PDFs don't animate
99 // calculate rotated x and y edges of the corp box. if they're negative, it means part of the image has
100 // been rotated outside of the bounds and we need to shift over the image so it lies inside the bounds again
170 // Rotate translate image into position according to doc properties.
ImageCG.cpp 65 // Image Class
69 : Image(observer)
110 CGImageRef image = frameAtIndex(0); local
112 // Currently we only check for solid color in the important special case of a 1x1 image.
113 if (image && CGImageGetWidth(image) == 1 && CGImageGetHeight(image) == 1) {
122 CGContextDrawImage(bmap.get(), dst, image);
135 // If the image already has a (non-device) color space, we don't want to
161 RetainPtr<CGImageRef> image = frameAtIndex(m_currentFrame) local
243 CGImageRef image = (CGImageRef)info; local
    [all...]
  /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/platform/win/
DragImageCGWin.cpp 32 #include "Image.h"
83 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale)
88 if (!image)
93 IntSize srcSize = dragImageSize(image);
105 srcContext = createCgContextFromBitmap(image);
115 ::DeleteObject(image);
116 image = 0;
120 hbmp = image;
127 DragImageRef createDragImageFromImage(Image* img)
  /external/webkit/WebCore/platform/wx/
CursorWx.cpp 28 #include "Image.h"
32 #include <wx/image.h>
41 Cursor::Cursor(Image* image, const IntPoint&)
45 //m_impl = new wxCursor( image->getWxBitmap()->ConvertToImage() );
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java 31 import org.eclipse.swt.graphics.Image;
163 Image image = new Image(display, new Rectangle(100, 100, 100, 100)); local
164 GC gc = new GC(image);
176 image.dispose();
566 // Create an image for double-buffering
567 Image image = new Image(display, getBounds()) local
623 Image image = new Image(display, getBounds()); local
700 Image image = new Image(display, getBounds()); local
928 Image image = new Image(display, getBounds()); local
    [all...]
  /external/webkit/WebCore/editing/
DeleteButtonController.cpp 41 #include "Image.h"
243 RefPtr<Image> buttonImage = Image::loadPlatformResource("deleteButton");
  /external/webkit/WebCore/inspector/
InspectorResource.cpp 250 return Image;
279 return Image;
  /external/webkit/WebCore/plugins/
PluginView.h 81 class Image;
310 PassRefPtr<Image> snapshot();
  /external/webkit/WebKit/mac/Misc/
WebIconDatabase.mm 41 #import <WebCore/Image.h>
132 if (Image* image = iconDatabase()->iconForPageURL(URL, IntSize(size)))
133 if (NSImage *icon = webGetNSImage(image, size))
158 Image* image = iconDatabase()->defaultIcon(IntSize(size));
159 return image ? image->getNSImage() : nil;
689 NSImage *webGetNSImage(Image* image, NSSize size
    [all...]
  /external/webkit/WebKit/win/
WebIconDatabase.cpp 39 #include <WebCore/Image.h>
173 Image* icon = 0;
177 // Make sure we check for the case of an "empty image"
181 LOG_ERROR("Failed to draw Image to HBITMAP");
295 LOG_ERROR("Failed to draw Image to HBITMAP");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestPkgAttrNode.java 47 import org.eclipse.swt.graphics.Image;
181 public Image getImage(Object element) {
  /external/junit/src/junit/awtui/
TestRunner.java 13 import java.awt.Image;
33 import java.awt.image.ImageProducer;
175 Image icon= loadFrameIcon();
399 private Image loadFrameIcon() {
  /external/webkit/WebKit/chromium/src/
ChromiumBridge.cpp 162 void ChromiumBridge::clipboardWriteImage(NativeImagePtr image,
167 WebImage webImage(*image);
169 WebImage webImage(image);
420 PassRefPtr<Image> ChromiumBridge::loadPlatformImageResource(const char* name)
424 return Image::nullImage();
426 RefPtr<Image> image = BitmapImage::create();
427 image->setData(resource, true);
428 return image;

Completed in 1285 milliseconds

1 2 3 4 5 6 78 91011>>