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

12 3 4 5 6 7 8 91011>>

  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 40 * The string image of the token.
42 public String image; field in class:Token
69 * Returns the image.
73 return image;
  /sdk/draw9patch/src/com/android/draw9patch/graphics/
GraphicsUtilities.java 20 import java.awt.image.BufferedImage;
21 import java.awt.image.Raster;
31 BufferedImage image = ImageIO.read(resource); local
32 return toCompatibleImage(image);
39 public static BufferedImage toCompatibleImage(BufferedImage image) {
41 return image;
44 if (image.getColorModel().equals(getGraphicsConfiguration().getColorModel())) {
45 return image;
49 image.getWidth(), image.getHeight(), image.getTransparency())
    [all...]
  /external/grub/util/
grub-image 2 # grub-image - Create a GRUB boot filesystem image and tarball
59 image=$bootdir.ext2fs
74 # Create a new filesystem image of the specified size.
75 if test ! -f $image; then
81 echo "# Creating $SIZE disk image \`$image'"
82 trap "rm -f $image" 0
83 dd if=/dev/zero of=$image bs=$SIZE count=1 >/dev/null
84 $mke2fs -F $image
    [all...]
grub-image.in 2 # grub-image - Create a GRUB boot filesystem image and tarball
59 image=$bootdir.ext2fs
74 # Create a new filesystem image of the specified size.
75 if test ! -f $image; then
81 echo "# Creating $SIZE disk image \`$image'"
82 trap "rm -f $image" 0
83 dd if=/dev/zero of=$image bs=$SIZE count=1 >/dev/null
84 $mke2fs -F $image
    [all...]
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/WebKit/chromium/src/
WebImageSkia.cpp 34 #include "Image.h"
91 void WebImage::assign(const WebImage& image)
93 m_bitmap = image.m_bitmap;
106 WebImage::WebImage(const PassRefPtr<Image>& image)
108 operator=(image);
111 WebImage& WebImage::operator=(const PassRefPtr<Image>& image)
114 if (image.get() && (p = image->nativeImageForCurrentFrame())
    [all...]
  /packages/apps/Camera/tests/src/com/android/camera/gallery/
MockImageList.java 36 public int getImageIndex(IImage image) {
37 return mList.indexOf(image);
44 public boolean removeImage(IImage image) {
45 return mList.remove(image);
52 public void addImage(MockImage image) {
53 mList.add(image);
54 image.setContainer(this);
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
MockImageList.java 36 public int getImageIndex(IImage image) {
37 return mList.indexOf(image);
44 public boolean removeImage(IImage image) {
45 return mList.remove(image);
52 public void addImage(MockImage image) {
53 mList.add(image);
54 image.setContainer(this);
  /external/webkit/WebCore/css/
CSSBorderImageValue.h 34 static PassRefPtr<CSSBorderImageValue> create(PassRefPtr<CSSValue> image, PassRefPtr<Rect> sliceRect, int horizontalRule, int verticalRule)
36 return adoptRef(new CSSBorderImageValue(image, sliceRect, horizontalRule, verticalRule));
45 // The border image.
48 // These four values are used to make "cuts" in the image. They can be numbers
52 // Values for how to handle the scaling/stretching/tiling of the image slices.
57 CSSBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<Rect> sliceRect, int horizontalRule, int verticalRule);
  /external/webkit/WebCore/wml/
WMLImageLoader.cpp 55 void WMLImageLoader::notifyFinished(CachedResource* image)
57 ImageLoader::notifyFinished(image);
59 if (!image->errorOccurred())
65 // Loading both 'localsrc' and 'src' failed. Ignore this image.
  /external/skia/src/animator/
SkDrawShader.h 33 SkBaseBitmap* image; member in class:SkDrawBitmapShader
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEImage.cpp 36 FEImage::FEImage(RefPtr<Image> image, SVGPreserveAspectRatio preserveAspectRatio)
38 , m_image(image)
43 PassRefPtr<FEImage> FEImage::create(RefPtr<Image> image, SVGPreserveAspectRatio preserveAspectRatio)
45 return adoptRef(new FEImage(image, preserveAspectRatio));
71 ts << "[type=IMAGE] ";
73 // FIXME: should this dump also object returned by SVGFEImage::image() ?
  /frameworks/base/services/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...]
  /frameworks/base/opengl/libs/GLES2/
gl2.cpp 103 extern "C" void __glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image);
104 extern "C" void __glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image);
107 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image)
110 (GLeglImageOES)egl_get_image_for_current_context((EGLImageKHR)image);
114 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image)
117 (GLeglImageOES)egl_get_image_for_current_context((EGLImageKHR)image);
  /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...]
  /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);

Completed in 1296 milliseconds

12 3 4 5 6 7 8 91011>>