/frameworks/base/awt/java/awt/image/ |
BufferStrategy.java | 22 package java.awt.image;
|
ImageProducer.java | 22 package java.awt.image; 25 * The ImageProducer provides an interface for objects which produce the image 26 * data. ImageProducer is used for reconstructing the image. Each image contains 45 * Starts a reconstruction of the image data which will be delivered to this 47 * reconstructing the image. 55 * Requests the ImageProducer to resend the image data in
|
/frameworks/base/awt/org/apache/harmony/awt/gl/ |
GLVolatileImage.java | 23 import java.awt.image.*;
|
/frameworks/base/libs/surfaceflinger/ |
BlurFilter.h | 29 GGLSurface const* image,
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
RadialGradient.java | 81 java.awt.image.ColorModel colorModel, 92 private final java.awt.image.ColorModel mColorModel; 94 public RadialGradientPaintContext(java.awt.image.ColorModel colorModel) { 101 public java.awt.image.ColorModel getColorModel() { 105 public java.awt.image.Raster getRaster(int x, int y, int w, int h) { 106 java.awt.image.BufferedImage image = new java.awt.image.BufferedImage(w, h, local 107 java.awt.image.BufferedImage.TYPE_INT_ARGB); 124 image.setRGB(0 /*startX*/, 0 /*startY*/, w, h, data, 0 /*offset*/, w /*scansize*/) [all...] |
SweepGradient.java | 73 java.awt.image.ColorModel colorModel, 84 private final java.awt.image.ColorModel mColorModel; 86 public SweepGradientPaintContext(java.awt.image.ColorModel colorModel) { 93 public java.awt.image.ColorModel getColorModel() { 97 public java.awt.image.Raster getRaster(int x, int y, int w, int h) { 98 java.awt.image.BufferedImage image = new java.awt.image.BufferedImage(w, h, local 99 java.awt.image.BufferedImage.TYPE_INT_ARGB); 131 image.setRGB(0 /*startX*/, 0 /*startY*/, w, h, data, 0 /*offset*/, w /*scansize*/) [all...] |
/external/webkit/WebCore/html/canvas/ |
CanvasPattern.cpp | 60 CanvasPattern::CanvasPattern(Image* image, bool repeatX, bool repeatY, bool originClean) 61 : m_pattern(Pattern::create(image, repeatX, repeatY))
|
/packages/apps/Gallery/src/com/android/camera/gallery/ |
IImageList.java | 24 // ImageList and Image classes have one-to-one correspondence. 38 // - Image 44 * The interface of all image collections used in gallery. 50 * Returns the count of image objects. 57 * @return true if the count of image objects is zero. 62 * Returns the image at the ith position. 65 * @return the image at the ith position 70 * Returns the image with a particular Uri. 73 * @return the image with a particular Uri. null if not found. 79 * @param image [all...] |
SingleImageList.java | 26 * one image. 53 public int getImageIndex(IImage image) { 54 return image == mSingleImage ? 0 : -1; 61 public boolean removeImage(IImage image) {
|
/frameworks/base/awt/java/awt/ |
Image.java | 24 import java.awt.image.AreaAveragingScaleFilter; 25 import java.awt.image.FilteredImageSource; 26 import java.awt.image.ImageFilter; 27 import java.awt.image.ImageObserver; 28 import java.awt.image.ImageProducer; 29 import java.awt.image.ReplicateScaleFilter; 34 * The Image abstract class represents the graphic images. 38 public abstract class Image { 42 * defined for a particular image. 47 * The Constant SCALE_DEFAULT indicates the default image scaling algorithm [all...] |
/frameworks/base/opengl/libs/GLES2/ |
gl2.cpp | 102 extern "C" void __glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image); 103 extern "C" void __glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image); 106 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image) 109 (GLeglImageOES)egl_get_image_for_current_context((EGLImageKHR)image); 113 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image) 116 (GLeglImageOES)egl_get_image_for_current_context((EGLImageKHR)image);
|
/external/grub/util/ |
mkbimage | 2 # MaKe a Bootable IMAGE --- 1.44, 2.88 and El Torito no-emulation mode 46 image= 65 Make a Bootable IMAGE using GRUB as a bootloader 70 Directory where the boot.image and the partition subdirectories 83 Type of the image to create. Choices are '1.20', '1.44', '1.60', 141 # create a filesystem of type $fs in $image with offset $offset 150 mkfs.$fs -F $image 152 losetup $lo_options /dev/loop1 $image 160 # copy ${image}1/* to ${image}:/, assuming ${image} contains a filesyste [all...] |
/external/webkit/WebCore/rendering/ |
RenderSVGImage.cpp | 57 SVGImageElement* image = static_cast<SVGImageElement*>(node()); local 58 m_localTransform = image->animatedLocalTransform(); 66 m_localBounds = FloatRect(image->x().value(image), image->y().value(image), image->width().value(image), image->height().value(image)); [all...] |
/device/htc/common/updater/ |
recovery_updater.c | 39 Value* image; local 45 if (ReadValueArgs(state, argv, 6, &image, 66 if (image->type != VAL_BLOB) { 67 printf("image argument is not blob (is type %d)\n", image->type); 73 image->data, 74 image->size, 82 FreeValue(image);
|
/external/webkit/WebKitTools/BuildSlaveSupport/ |
build-launcher-dmg | 30 # Script used by build slaves to create a disk-image containing WebKit.app. 70 print "Creating disk image...\n"; 72 die "Creating disk image failed" if $?; 78 print "Compressing disk image...\n"; 79 system("mv", "-f", $nightlyLauncherDiskImagePath, "$nightlyLauncherDiskImagePath.uncompressed.dmg") == 0 or die "Renaming disk image failed"; 81 die "Compressing disk image failed" if $?; 91 system("rsync", "-vP", $nightlyLauncherDiskImagePath, "$nightlyRemoteHost:$nightlyRemoteDiskImagePath") == 0 or die "Failed uploading disk image"; 92 system("ssh", $nightlyRemoteHost, $nightlyRemoteLatestPath, $buildTag, "mac", $nightlyRemoteDiskImagePath, $revision) == 0 or die "Failed linking disk image to latest"; 98 system("rsync", "-vP", $nightlyLauncherDiskImagePath, $remoteDiskImagePath) == 0 or die "Failed uploading disk image"; 117 print "Disk image left at $nightlyLauncherDiskImagePath\n" [all...] |
/external/webkit/WebCore/html/ |
HTMLImageLoader.cpp | 46 bool errorOccurred = image()->errorOccurred(); 47 if (!errorOccurred && image()->httpStatusCodeErrorOccurred()) 59 CachedImage* cachedImage = image();
|
/external/webkit/WebCore/rendering/style/ |
NinePieceImage.h | 45 NinePieceImage(StyleImage* image, LengthBox slices, ENinePieceImageRule h, ENinePieceImageRule v) 46 : m_image(image) 57 StyleImage* image() const { return m_image.get(); } function in class:WebCore::NinePieceImage
|
/external/webkit/WebKit/qt/docs/webkitsnippets/webpage/ |
main.cpp | 69 QImage image(page.viewportSize(), QImage::Format_ARGB32); 70 QPainter painter(&image); 75 QImage thumbnail = image.scaled(400, 400);
|
/external/webkit/WebKit/qt/tests/hybridPixmap/ |
widget.h | 37 Q_PROPERTY(QImage image READ image WRITE setImage) 45 QImage image() const;
|
/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/ |
AddressListParserTokenManager.java | 745 StringBuffer image; field in class:AddressListParserTokenManager 790 t.image = (im == null) ? input_stream.GetImage() : im; 826 image = null; 930 if (image == null) 931 image = new StringBuffer(); 932 image.append(input_stream.GetSuffix(jjimageLen)); 934 image.deleteCharAt(image.length() - 2); 937 if (image == null) 938 image = new StringBuffer() [all...] |
/external/webkit/WebCore/bindings/v8/custom/ |
V8HTMLImageElementConstructor.cpp | 56 return throwError("Image constructor associated frame is unavailable", V8Proxy::ReferenceError); 60 return throwError("Image constructor associated document is unavailable", V8Proxy::ReferenceError); 66 RefPtr<HTMLImageElement> image = new HTMLImageElement(HTMLNames::imgTag, document); local 68 image->setWidth(toInt32(args[0])); 70 image->setHeight(toInt32(args[1])); 73 V8DOMWrapper::setDOMWrapper(args.Holder(), V8ClassIndex::ToInt(V8ClassIndex::IMAGE), image.get()); 74 image->ref(); 75 V8DOMWrapper::setJSWrapperForDOMNode(image.get(), v8::Persistent<v8::Object>::New(args.Holder()));
|
/frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/ |
JPEGImageReader.java | 32 import org.apache.harmony.awt.gl.image.DecodingImageSource; 33 import org.apache.harmony.awt.gl.image.OffscreenImage; 37 import java.awt.image.BufferedImage; 40 * This implementation uses org.apache.harmony.awt.gl.image.JpegDecoder to read 41 * an image. The only implemented method is read(..); 45 * @see org.apache.harmony.awt.gl.image.JpegDecoder 99 OffscreenImage image = new OffscreenImage(source); local 100 source.addConsumer(image); 108 return image.getBufferedImage();
|
/frameworks/base/awt/org/apache/harmony/x/imageio/plugins/png/ |
PNGImageReader.java | 21 import org.apache.harmony.awt.gl.image.DecodingImageSource; 22 import org.apache.harmony.awt.gl.image.OffscreenImage; 34 import java.awt.image.BufferedImage; 82 OffscreenImage image = new OffscreenImage(source); local 83 source.addConsumer(image); 88 return image.getBufferedImage();
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/icons/ |
ImageFactory.java | 25 import org.eclipse.swt.graphics.Image;
34 * An utility class to serve {@link Image} correspond to the various icons
40 private final HashMap<String, Image> mImages = new HashMap<String, Image>();
47 * Loads an image given its filename (with its extension).
48 * Might return null if the image cannot be loaded.
50 * @param imageName The filename (with extension) of the image to load.
51 * @return A new or existing {@link Image}. The caller must NOT dispose the image (the
52 * image will disposed by {@link #dispose()}). The returned image can be null if the 57 Image image = mImages.get(imageName); local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/ |
SDL_gsmouse.c | 54 struct ps2_image image; local 69 /* Remove the cursor image from the DMA area */ 109 image = screen_image; 110 image.y += screen->offset / screen->pitch + mouse_y1; 111 image.h = mouse_y2 - mouse_y1; 112 image.ptr = mapped_mem + 113 (image.y - screen_image.y) * screen->pitch; 114 ioctl(console_fd, PS2IOC_LOADIMAGE, &image); 116 /* Need to scale offscreen image to TV output */ 117 if ( image.y > 0 ) [all...] |