Searched refs:hints (Results 51 - 67 of 67) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/print/
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 DXEmbedCanvasPeer.java238 XSizeHints hints = new XSizeHints(p_hints);
240 Dimension res = new Dimension(hints.get_width(), hints.get_height());
255 XSizeHints hints = new XSizeHints(p_hints);
257 Dimension res = new Dimension(hints.get_min_width(), hints.get_min_height());
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
H A DXWindow.java1461 public void setMWMHints(PropMwmHints hints) { argument
1462 mwm_hints = hints;
1463 if (hints != null) {
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c1323 int idx = srcImageP->hints.colorOrder[i];
1437 tbl[srcImageP->hints.colorOrder[i]] = jtable[i].table;
1443 tbl[srcImageP->hints.colorOrder[i]] = jtable[0].table;
1845 if (srcP->hints.needToExpand) {
1884 if (srcP->hints.packing & INTERLEAVED) {
1892 if ((srcP->hints.packing&BYTE_INTERLEAVED)==BYTE_INTERLEAVED ||
1893 (srcP->hints.packing&SHORT_INTERLEAVED)==SHORT_INTERLEAVED||
1894 (srcP->hints.packing&BYTE_SINGLE_BAND) == BYTE_SINGLE_BAND||
1895 (srcP->hints.packing&SHORT_SINGLE_BAND)==SHORT_SINGLE_BAND||
1896 (srcP->hints
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DGifImageDecoder.java329 * The ImageConsumer hints flag for a non-interlaced GIF image.
336 * The ImageConsumer hints flag for an interlaced GIF image.
574 int hints = (interlace ? interlaceflags : normalflags);
575 setHints(hints);
H A DImageRepresentation.java60 int hints; field in class:ImageRepresentation
333 hints = h;
/openjdk7/jdk/src/share/classes/java/awt/
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 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/src/windows/native/java/net/
H A Dnet_util_md.h124 /* Flags used in "hints" argument to getaddrinfo() */
189 IN const struct addrinfo FAR * hints,
/openjdk7/jdk/test/sun/java2d/OpenGL/
H A DCustomCompositeTest.java226 public CompositeContext createContext(ColorModel srcColorModel, ColorModel dstColorModel, RenderingHints hints) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaLoader.java650 String[] hints = desc.getLocationHints();
651 if (hints != null && hints.length > 0)
652 loc = hints[0];
H A DXMLSchemaValidator.java1760 //store the location hints.. we need to do it so that we can defer the loading of grammar until
1761 //there is a reference to a component from that namespace. To provide location hints to the
2377 //tries to parse the grammar using location hints from the give namespace.
2433 // use location hints instead
2437 // try to parse the grammar using location hints from that namespace..
2485 String[] hints = new String[length];
2492 hints[counter++] = locations[i];
2501 fXSDDescription.fLocationHints = hints;
2505 System.arraycopy(hints, 0, fXSDDescription.fLocationHints, 0, counter);
/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/native/sun/awt/image/
H A Dawt_parseImage.c107 /* Set hints */
581 if (imageP->hints.colorOrder) {
582 free ((void *) imageP->hints.colorOrder);
600 HintS_t *hintP = &imageP->hints;
629 /* These hints are #bytes */
/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/demo/jfc/Font2DTest/
H A DFontPanel.java516 /// Sets the font, hints, according to the set parameters
1054 String hints = ( " with antialias " + antiAliasType + "and" +
1062 String infoLine3 = "Using " + METHODS[drawMethod] + hints;

Completed in 110 milliseconds

123