Searched defs:hints (Results 26 - 50 of 50) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DPixelGrabber.java393 * @param hints a set of hints used to process the pixels
395 public void setHints(int hints) { argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DAlphaComposite.java703 RenderingHints hints) {
701 createContext(ColorModel srcColorModel, ColorModel dstColorModel, RenderingHints hints) argument
H A DGraphics2D.java298 * attributes and rendering hints. The definition
623 * Rendering hints set on the <code>Graphics2D</code> object might
625 * If explicit control is required over specific hints recognized by a
626 * specific <code>RenderableImage</code>, or if knowledge of which hints
916 * algorithms with the specified <code>hints</code>.
917 * The existing values for all rendering hints are discarded and
918 * the new set of known hints and values are initialized from the
924 * @param hints the rendering hints to be set
928 public abstract void setRenderingHints(Map<?,?> hints); argument
944 addRenderingHints(Map<?,?> hints) argument
[all...]
H A DMultipleGradientPaintContext.java155 RenderingHints hints,
173 if (hints == null) {
150 MultipleGradientPaintContext(MultipleGradientPaint mgp, ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform t, RenderingHints hints, float[] fractions, Color[] colors, CycleMethod cycleMethod, ColorSpaceType colorSpace) argument
H A DRadialGradientPaintContext.java89 * @param hints the hints that the context object uses to choose
114 RenderingHints hints,
123 super(paint, cm, deviceBounds, userBounds, t, hints,
109 RadialGradientPaintContext(RadialGradientPaint paint, ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform t, RenderingHints hints, float cx, float cy, float r, float fx, float fy, float[] fractions, Color[] colors, CycleMethod cycleMethod, ColorSpaceType colorSpace) argument
H A DRenderingHints.java52 * Note that since these keys and values are <i>hints</i>, there is
63 * The full set of supported keys and hints may also vary by destination
68 * Implementations are free to ignore the hints completely, but should
75 * The keys used to control the hints are all special values that
77 * Many common hints are expressed below as static constants in this
79 * Other hints may be created by other packages by defining new objects
251 * other, more specific hints in preference to this hint.
439 * These hints can equally be applied when rendering to software images,
960 * @param init a map of key/value pairs to initialize the hints
1088 * @param hints th
1091 add(RenderingHints hints) argument
[all...]
H A DTexturePaintContext.java71 RenderingHints hints,
76 Object val = hints.get(hints.KEY_INTERPOLATION);
79 ? (hints.get(hints.KEY_RENDERING) == hints.VALUE_RENDER_QUALITY)
80 : (val != hints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR));
69 getContext(BufferedImage bufImg, AffineTransform xform, RenderingHints hints, Rectangle devBounds) argument
H A DColor.java1204 * @param hints the set of hints that the context object can use to
1219 RenderingHints hints) {
1216 createContext(ColorModel cm, Rectangle r, Rectangle2D r2d, AffineTransform xform, RenderingHints hints) argument
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DGradientPaints.java88 private static final Object[] hints = { field in class:GradientPaints
108 Object aahint = hints[0];
127 for (Object aahint : hints) {
/openjdk7/jdk/src/solaris/native/java/net/
H A DInet4AddressImpl.c74 struct addrinfo hints, *res; local
77 memset(&hints, 0, sizeof(hints));
78 hints.ai_flags = AI_CANONNAME;
79 hints.ai_family = AF_UNSPEC;
81 error = getaddrinfo(hostname, NULL, &hints, &res);
127 struct addrinfo hints, *res, *resNew = NULL; local
145 memset(&hints, 0, sizeof(hints));
146 hints
[all...]
H A DInet6AddressImpl.c89 struct addrinfo hints, *res; local
92 bzero(&hints, sizeof(hints));
93 hints.ai_flags = AI_CANONNAME;
94 hints.ai_family = AF_UNSPEC;
96 error = (*getaddrinfo_ptr)(hostname, NULL, &hints, &res);
149 struct addrinfo hints, *res, *resNew = NULL; local
191 bzero(&hints, sizeof(hints));
192 hints
[all...]
/openjdk7/jdk/src/windows/native/java/net/
H A DInet6AddressImpl.c93 struct addrinfo hints, *res, *resNew = NULL; local
130 memset(&hints, 0, sizeof(hints));
131 hints.ai_flags = AI_CANONNAME;
132 hints.ai_family = AF_UNSPEC;
134 error = getaddrinfo(hostname, NULL, &hints, &res);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageRepresentation.java60 int hints; field in class:ImageRepresentation
333 hints = h;
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_parseImage.h172 HintS_t hints; /* Hint structure */ member in struct:__anon677
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_xembed_server.c389 XSizeHints * hints; local
395 hints = XAllocSizeHints();
396 DASSERT(hints != NULL);
398 if (XGetWMNormalHints(awt_display, sdata->handle, hints, &dummy) == Success) {
399 res = createDimension(env, hints->width, hints->height);
401 XFree(hints);
416 XSizeHints * hints; local
422 hints = XAllocSizeHints();
423 DASSERT(hints !
[all...]
H A Dawt_wm.c1351 * Size and decoration hints ...
1357 * Remove size hints specified by the mask.
1365 XSizeHints *hints = XAllocSizeHints(); local
1368 if (hints == NULL) {
1373 /* sanitize the mask, only do these hints */
1376 XGetWMNormalHints(dpy, shell_win, hints, &ignore);
1377 if ((hints->flags & mask) == 0) {
1378 XFree(hints);
1383 DTRACE_PRINT("WM: removing hints");
1387 if (hints
1421 XWMHints *hints = XGetWMHints(dpy, shell_win); local
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java129 private static AATextInfo getAATextInfoFromMap(Map hints) { argument
131 Object aaHint = hints.get(KEY_TEXT_ANTIALIASING);
132 Object contHint = hints.get(KEY_TEXT_LCD_CONTRAST);
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java1607 * @param hints The rendering hints to be set
1610 public void setRenderingHints(Map<?,?> hints) { argument
1611 mGraphics.setRenderingHints(hints);
1618 * @param hints The rendering hints to be set
1621 public void addRenderingHints(Map<?,?> hints) { argument
1622 mGraphics.addRenderingHints(hints);
H A DProxyGraphics2D.java1491 * @param hints The rendering hints to be set
1494 public void setRenderingHints(Map<?,?> hints) { argument
1495 mGraphics.setRenderingHints(hints);
1502 * @param hints The rendering hints to be set
1505 public void addRenderingHints(Map<?,?> hints) { argument
1506 mGraphics.addRenderingHints(hints);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXBaseWindow.java72 private XSizeHints hints; field in class:XBaseWindow
416 if (hints != null) {
417 XlibWrapper.XFree(hints.pData);
418 hints = null;
448 public final void setWMHints(XWMHints hints) { argument
451 XlibWrapper.XSetWMHints(XToolkit.getDisplay(), getWindow(), hints.pData);
473 if (hints == null) {
475 hints = new XSizeHints(p_hints);
479 return hints;
483 if (insLog.isLoggable(PlatformLogger.FINER)) insLog.finer("Setting hints, flag
[all...]
H A DXWindow.java1461 public void setMWMHints(PropMwmHints hints) { argument
1462 mwm_hints = hints;
1463 if (hints != null) {
H A DXWindowPeer.java246 XWMHints hints = getWMHints();
247 hints.set_flags(hints.get_flags() | (int)XUtilConstants.WindowGroupHint);
248 hints.set_window_group(ownerWindow);
249 XlibWrapper.XSetWMHints(XToolkit.getDisplay(), getWindow(), hints.pData);
491 XSizeHints hints = getHints();
492 setSizeHints(hints.get_flags() | XUtilConstants.PPosition | XUtilConstants.PSize,
516 XWMHints hints = getWMHints();
517 hints.set_flags(hints
2005 setMWMHints(PropMwmHints hints) argument
[all...]
H A DXlibWrapper.java445 static native int XGetWMNormalHints(long display, long window, long hints, long supplied_return); argument
446 static native void XSetWMNormalHints(long display, long window, long hints); argument
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java204 public RenderingHints hints; field in class:SunGraphics2D
276 if (hints != null) {
277 g.hints = (RenderingHints) this.hints.clone();
642 /* The text anti-aliasing hints that are set by the client need
1242 if (hints != null) {
1243 hints.put(hintKey, hintValue);
1249 if (hints == null) {
1250 hints = makeHints(null);
1252 hints
1311 setRenderingHints(Map<?,?> hints) argument
1350 addRenderingHints(Map<?,?> hints) argument
1391 makeHints(Map hints) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c1007 (JNIEnv *env, jclass clazz, jlong display, jlong window, jlong hints)
1010 XSetWMHints((Display *) jlong_to_ptr(display), window, (XWMHints *) jlong_to_ptr(hints));
1019 (JNIEnv *env, jclass clazz, jlong display, jlong window, jlong hints)
1025 memcpy(jlong_to_ptr(hints), get_hints, sizeof(XWMHints));
1028 memset(jlong_to_ptr(hints), 0, sizeof(XWMHints));
1415 (JNIEnv *env, jclass clazz, jlong display, jlong window, jlong hints, jlong supplied_return)
1420 (XSizeHints*) jlong_to_ptr(hints),
1430 (JNIEnv *env, jclass clazz, jlong display, jlong window, jlong hints)
1433 XSetWMNormalHints((Display*) jlong_to_ptr(display), window, (XSizeHints*) jlong_to_ptr(hints));
1497 XSizeHints * hints; local
1006 Java_sun_awt_X11_XlibWrapper_XSetWMHints(JNIEnv *env, jclass clazz, jlong display, jlong window, jlong hints) argument
1018 Java_sun_awt_X11_XlibWrapper_XGetWMHints(JNIEnv *env, jclass clazz, jlong display, jlong window, jlong hints) argument
1414 Java_sun_awt_X11_XlibWrapper_XGetWMNormalHints(JNIEnv *env, jclass clazz, jlong display, jlong window, jlong hints, jlong supplied_return) argument
1429 Java_sun_awt_X11_XlibWrapper_XSetWMNormalHints(JNIEnv *env, jclass clazz, jlong display, jlong window, jlong hints) argument
[all...]

Completed in 137 milliseconds

12