/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/ |
Xvlib.h | 383 SDL_NAME(XvImage) *image, 401 SDL_NAME(XvImage) *image,
|
/external/webkit/WebCore/bindings/objc/ |
DOMExtensions.h | 56 - (NSImage *)image WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER);
|
/external/webkit/WebCore/platform/chromium/ |
CursorChromium.cpp | 41 Cursor::Cursor(Image* image, const IntPoint& hotSpot) 42 : m_impl(image, hotSpot)
|
/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() );
|
/external/webkit/WebCore/rendering/ |
RenderScrollbarPart.cpp | 140 void RenderScrollbarPart::imageChanged(WrappedImagePtr image, const IntRect* rect) 152 RenderBlock::imageChanged(image, rect);
|
SVGRenderSupport.cpp | 187 void renderSubtreeToImage(ImageBuffer* image, RenderObject* item) 190 ASSERT(image); 191 ASSERT(image->context()); 192 RenderObject::PaintInfo info(image->context(), IntRect(), PaintPhaseForeground, 0, 0, 0);
|
/external/webkit/WebKit/mac/WebView/ |
WebFrameLoadDelegate.h | 102 @abstract Notifies the delegate that a page icon image for a frame has been received 104 @param image The icon image. Also known as a "favicon". 107 - (void)webView:(WebView *)sender didReceiveIcon:(NSImage *)image forFrame:(WebFrame *)frame;
|
/external/webkit/WebKit/win/Interfaces/ |
DOMPrivate.idl | 49 HRESULT renderedImage([out, retval] HBITMAP* image);
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
ImageLoader.java | 25 import org.eclipse.swt.graphics.Image; 36 * Because Java requires to know the jar file in which to load the image from, a class is required 44 * This also means that {@link Image} object returned by the loader should never be disposed. 51 private final HashMap<String, Image> mLoadedImages = new HashMap<String, Image>(); 107 for (Image image : mLoadedImages.values()) { 108 image.dispose(); 117 * This searches for an image located at /images/<var>filename</var>. 119 * @param filename the filename of the image to load [all...] |
ScreenShotDialog.java | 30 import org.eclipse.swt.graphics.Image; 184 // space for the image 210 * Captures a new image from the device, and display it. 227 Image image; local 230 image = ImageLoader.createPlaceHolderArt( 236 // convert raw data to an Image. 244 image = new Image(getParent().getDisplay(), imageData); 247 mBusyLabel.setText("Captured image:") [all...] |
/prebuilt/darwin-x86/swt/ |
swt.jar | |
/external/proguard/src/proguard/gui/splash/ |
BufferedSprite.java | 24 import java.awt.image.BufferedImage; 27 * This Sprite encapsulates another Sprite, which is then buffered in an Image. 35 private final Image bufferImage; 45 * Creates a new BufferedSprite with an ABGR image. 46 * @param bufferX the x offset of the buffer image. 47 * @param bufferY the y offset of the buffer image. 48 * @param width the width of the buffer image. 49 * @param height the height of the buffer image. 51 * @param x the variable x ordinate of the image buffer for painting. 52 * @param y the variable y ordinate of the image buffer for painting [all...] |
/external/qemu/android/ |
cmdline-options.h | 66 CFG_PARAM( system, "<file>", "read initial system image from <file>" ) 69 CFG_PARAM( ramdisk, "<file>", "ramdisk image (default <system>/ramdisk.img" ) 70 CFG_PARAM( image, "<file>", "obsolete, use -system <file> instead" ) 71 CFG_PARAM( init_data, "<file>", "initial data image (default <system>/userdata.img" ) 73 CFG_PARAM( data, "<file>", "data image (default <datadir>/userdata-qemu.img" ) 75 CFG_PARAM( cache, "<file>", "cache partition image (default is temporary file)" ) 78 OPT_PARAM( sdcard, "<file>", "SD card image (default <system>/sdcard.img") 79 OPT_FLAG ( wipe_data, "reset the use data image (copy it from initdata)" ) 108 OPT_PARAM( onion, "<image>", "use overlay PNG image over screen" [all...] |
/external/webkit/WebCore/platform/graphics/cairo/ |
ImageBufferCairo.cpp | 99 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer 102 // It's assumed that if image() is called, the actual rendering to the 106 // This creates a COPY of the image and will cache that copy. This means 108 // currently-returned image, nor the results of future image() calls, 111 // This seems silly, but is the way the CG port works: image() is 288 cairo_surface_t* image = cairo_get_target(context()->platformContext()); local 289 if (!image) 292 String actualMimeType("image/png") [all...] |
/external/webkit/WebCore/platform/graphics/cg/ |
ImageBufferCG.cpp | 112 Image* ImageBuffer::image() const function in class:WebCore::ImageBuffer 115 // It's assumed that if image() is called, the actual rendering to the 263 if (equalIgnoringCase(mimeType, "image/png")) 265 if (equalIgnoringCase(mimeType, "image/jpeg")) 267 if (equalIgnoringCase(mimeType, "image/gif")) 279 RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(context()->platformContext())); 280 if (!image) 291 CGImageDestinationAddImage(destination.get(), image.get(), 0);
|
/external/webkit/WebCore/svg/graphics/filters/ |
SVGFEMerge.cpp | 82 filterContext->drawImage(m_mergeInputs[i]->resultImage()->image(), DeviceColorSpace, destRect);
|
SVGFEOffset.cpp | 94 filterContext->drawImage(m_in->resultImage()->image(), DeviceColorSpace, dstRect);
|
/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.h | 77 /* [retval][out] */ OLE_HANDLE *image);
|
/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/ |
ParseException.java | 138 retval += add_escapes(tok.image);
|
/packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/ |
ParseException.java | 138 retval += add_escapes(tok.image);
|
/packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/ |
ParseException.java | 138 retval += add_escapes(tok.image);
|
/packages/apps/Mms/src/com/android/mms/ui/ |
SlideshowPresenter.java | 197 * @param image 201 protected void presentImage(SlideViewInterface view, ImageModel image, 204 view.setImage(image.getSrc(), image.getBitmapWithDrmCheck()); 215 view.setImageVisibility(image.isVisible());
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Bitmap.java | 20 import java.awt.image.BufferedImage; 43 Bitmap(BufferedImage image) { 45 mImage = image;
|
/packages/apps/Email/src/org/apache/james/mime4j/field/address/ |
Builder.java | 198 out.append(head.image);
203 out.append(tail.image);
211 out.append(specialToken.image);
|