Searched defs:img (Results 76 - 88 of 88) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunToolkit.java757 Image img = (Image)imgCache.get(url);
758 if (img == null) {
760 img = tk.createImage(new URLImageSource(url));
761 imgCache.put(url, img);
765 return img;
776 Image img = (Image)imgCache.get(filename);
777 if (img == null) {
779 img = tk.createImage(new FileImageSource(filename));
780 imgCache.put(filename, img);
784 return img;
843 checkImage(Image img, int w, int h, ImageObserver o) argument
858 prepareImage(Image img, int w, int h, ImageObserver o) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWComponentPeer.java960 public boolean prepareImage(Image img, int w, int h, ImageObserver o) { argument
962 return getToolkit().prepareImage(img, w, h, o);
966 public int checkImage(Image img, int w, int h, ImageObserver o) { argument
968 return getToolkit().checkImage(img, w, h, o);
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c55 XImage *img; member in struct:_X11RIPrivate
79 static void X11SD_SwapBytes(X11SDOps *xsdo, XImage *img, int depth, int bpp);
551 XImage *img = NULL; local
562 img = XShmCreateImage(awt_display, xsdo->configData->awt_visInfo.visual,
565 if (img == NULL) {
570 shmget(IPC_PRIVATE, height * img->bytes_per_line,
577 XDestroyImage(img);
588 XDestroyImage(img);
610 XDestroyImage(img);
614 img
640 XImage *img = NULL; local
1257 X11SD_SwapBytes(X11SDOps *xsdo, XImage * img, int depth, int bpp) argument
1328 XImage * img = NULL; local
[all...]
H A DXRBackendNative.c643 XImage *defaultImg, *img; local
671 img = defaultImg;
681 img->data[line*img->bytes_per_line + pix] =
686 img = XCreateImage(awt_display, NULL, 8, ZPixmap,
692 img, 0, 0, 0, 0, width, height); local
695 if (img != defaultImg) {
696 img->data = NULL;
697 XDestroyImage(img);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWComponentPeer.java736 public boolean prepareImage(Image img, int w, int h, ImageObserver o) { argument
737 return getToolkit().prepareImage(img, w, h, o);
740 public int checkImage(Image img, int w, int h, ImageObserver o) { argument
741 return getToolkit().checkImage(img, w, h, o);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlWriter.java641 public void img(String imggif, String imgname, int width, int height) { method in class:HtmlWriter
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c1993 expandPacked(JNIEnv *env, BufImageS_t *img, ColorModelS_t *cmP, argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java2777 public IconRadioButton(String key, String img, boolean selected, argument
2781 final URL imgURL = getImageResource(img);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXComponentPeer.java776 public boolean prepareImage(Image img, int w, int h, ImageObserver o) { argument
777 return getToolkit().prepareImage(img, w, h, o);
780 public int checkImage(Image img, int w, int h, ImageObserver o) { argument
781 return getToolkit().checkImage(img, w, h, o);
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java142 BufferedImage img = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB_PRE);
144 clearRect(img, w, h);
145 return img;
148 protected BufferedImage getCompositingImageSame(BufferedImage img, int w, int h) { argument
149 if ((img == null) || (img.getWidth() != w) || (img.getHeight() != h)) {
150 img = getCompositingImage(w, h);
152 return img;
1010 public void blitImage(CRenderer renderer, SunGraphics2D sg2d, SurfaceData img, boolea argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java2510 private static Rectangle getImageRegion(RenderedImage img, argument
2516 new Rectangle(img.getMinX(), img.getMinY(),
2517 img.getWidth(), img.getHeight());
2578 * @param img The image to be drawn. Does nothing if img is null.
2586 public void drawRenderedImage(RenderedImage img, argument
2589 if (img == null) {
2594 if (img instanceo
2722 drawTranslatedRenderedImage(RenderedImage img, Rectangle region, int i2uTransX, int i2uTransY) argument
2806 drawRenderableImage(RenderableImage img, AffineTransform xform) argument
3022 isHiDPIImage(final Image img) argument
3026 drawHiDPIImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer) argument
3057 drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) argument
3070 copyImage(Image img, int dx, int dy, int sx, int sy, int width, int height, Color bgcolor, ImageObserver observer) argument
3096 drawImage(Image img, int x, int y, int width, int height, Color bg, ImageObserver observer) argument
3140 drawImage(Image img, int x, int y, ImageObserver observer) argument
3148 drawImage(Image img, int x, int y, Color bg, ImageObserver observer) argument
3183 drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer) argument
3195 drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer) argument
3281 drawImage(Image img, AffineTransform xform, ImageObserver observer) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c1713 XImage *img = (XImage*) jlong_to_ptr(image); local
1721 img->data = NULL;
1722 XDestroyImage(img);
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java3485 * @param img the image being observed
3502 public boolean imageUpdate(Image img, int infoflags, argument

Completed in 277 milliseconds

1234