Searched defs:img (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/awt/java/awt/image/
H A DImageObserver.java83 * @param img
99 public boolean imageUpdate(Image img, int infoflags, int x, int y, int width, int height); argument
H A DPixelGrabber.java64 public PixelGrabber(Image img, int x, int y, int w, int h, int[] pix, argument
66 initialize(img.getSource(), x, y, w, h, pix, off, scansize, true);
69 public PixelGrabber(Image img, int x, int y, int w, int h, boolean forceRGB) { argument
70 initialize(img.getSource(), x, y, w, h, null, 0, 0, forceRGB);
/frameworks/base/awt/org/apache/harmony/awt/wtk/
H A DCursorFactory.java66 * @param img - image(source) to create cursor from
71 public abstract NativeCursor createCustomCursor(Image img, int xHotSpot, int yHotSpot); argument
/frameworks/base/awt/java/awt/
H A DCursor.java211 * @param img
212 * the img.
216 Cursor(String name, Image img, Point hotSpot) { argument
220 image = img;
346 Image img = Toolkit.getDefaultToolkit().createImage(fileStr);
347 cursor = new Cursor(nameStr, img, new Point(x, y));
H A DGraphics2D.java105 * @param img
116 public abstract void drawImage(BufferedImage img, BufferedImageOp op, int x, int y); argument
122 * @param img
131 public abstract boolean drawImage(Image img, AffineTransform xform, ImageObserver obs); argument
137 * @param img
142 public abstract void drawRenderableImage(RenderableImage img, AffineTransform xform); argument
148 * @param img
153 public abstract void drawRenderedImage(RenderedImage img, AffineTransform xform); argument
H A DGraphics.java435 * @param img
449 public abstract boolean drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer); argument
457 * @param img
469 public abstract boolean drawImage(Image img, int x, int y, ImageObserver observer); argument
479 * @param img
497 public abstract boolean drawImage(Image img, int x, int y, int width, int height, argument
507 * @param img
523 public abstract boolean drawImage(Image img, int x, int y, int width, int height, argument
537 * @param img
571 public abstract boolean drawImage(Image img, in argument
615 drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer) argument
[all...]
H A DToolkit.java722 * @param img
736 public Cursor createCustomCursor(Image img, Point hotSpot, String name) argument
740 int w = img.getWidth(null), x = hotSpot.x;
741 int h = img.getHeight(null), y = hotSpot.y;
746 return new Cursor(name, img, hotSpot);
1145 * @param img
1146 * the img.
1153 NativeCursor createCustomNativeCursor(Image img, Point hotSpot, String name) { argument
1154 return wtk.getCursorFactory().createCustomCursor(img, hotSpot.x, hotSpot.y);
H A DComponent.java5868 public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h) { argument
/frameworks/base/awt/org/apache/harmony/awt/gl/image/
H A DOffscreenImage.java462 private /*synchronized*/ void imageUpdate(Image img, int infoflags, int x, int y, argument
/frameworks/base/libs/surfaceflinger/
H A DLayerBuffer.h90 copybit_image_t img; member in struct:android::LayerBuffer::NativeBuffer
/frameworks/base/awt/com/android/internal/awt/
H A DAndroidJavaBlitter.java324 void render(int[] img, int x, int y, int width, int height) { argument
325 canvas.drawBitmap(Bitmap.createBitmap(img, width, height, Bitmap.Config.ARGB_8888), x, y, paint);
H A DAndroidGraphics2D.java364 public void drawRenderableImage(RenderableImage img, AffineTransform xform) { argument
369 public void drawRenderedImage(RenderedImage img, AffineTransform xform) { argument
/frameworks/base/core/java/android/text/
H A DHtml.java62 * Retrieves images for HTML <img> tags.
67 * &lt;img&gt; tag. The <code>source</code> argument is the
94 * Any &lt;img&gt; tags in the HTML will display as a generic
115 * Any &lt;img&gt; tags in the HTML will use the specified ImageGetter
274 out.append("<img src=\"");
487 } else if (tag.equalsIgnoreCase("img")) {
599 Attributes attributes, Html.ImageGetter img) {
603 if (img != null) {
604 d = img.getDrawable(src);
598 startImg(SpannableStringBuilder text, Attributes attributes, Html.ImageGetter img) argument
/frameworks/base/opengl/libagl/
H A Dcopybit.cpp49 android_native_buffer_t* buffer, copybit_image_t* img)
62 img->w = surface->stride;
63 img->h = vstride ? vstride : surface->height;
64 img->format = opFormat;
65 img->base = surface->data;
66 img->handle = (native_handle_t *)buffer->handle;
47 textureToCopyBitImage( const GGLSurface* surface, int32_t opFormat, android_native_buffer_t* buffer, copybit_image_t* img) argument
H A Degl.cpp2100 EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img) argument
2106 android_native_buffer_t* native_buffer = (android_native_buffer_t*)img;
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCommonGraphics2D.java581 public void drawRenderableImage(RenderableImage img, AffineTransform xform) { argument
582 if (img == null) {
589 drawRenderedImage(img.createDefaultRendering(), xform);
591 int width = (int)Math.round(img.getWidth()*scaleX);
592 int height = (int)Math.round(img.getHeight()*scaleY);
595 drawRenderedImage(img.createScaledRendering(width, height, null), xform);
605 Image img = null;
608 img = (Image)rimg;
611 img = new BufferedImage(rimg.getColorModel(), rimg.copyData(null), false, null);
614 drawImage(img, xfor
[all...]
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp1691 EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img) argument
1698 ImageRef _i(img);
1701 egl_image_t* image = get_image(img);

Completed in 489 milliseconds