Searched refs:PAINT_ALL (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DLoweredBorder.java119 ImageScalingHelper.PAINT_ALL);
192 ImageScalingHelper.PAINT_ALL);
H A DImageScalingHelper.java80 * For example PAINT_ALL | PAINT_CENTER will paint all but the center.
82 static final int PAINT_ALL = 512; field in class:ImageScalingHelper
98 * @param mask Specifies portion of image to render, if <code>PAINT_ALL</code> is specified, any other regions
99 * specified will not be painted, for example PAINT_ALL | PAINT_CENTER paints everything but the
165 if ((mask & PAINT_ALL) != 0) {
166 mask = (PAINT_ALL - 1) & ~mask;
H A DAbstractRegionPainter.java646 ImageScalingHelper.PaintType.PAINT9_STRETCH, ImageScalingHelper.PAINT_ALL);
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DPaint9Painter.java81 * PAINT_ALL | PAINT_CENTER will paint all but the center.
83 public static final int PAINT_ALL = 512; field in class:Paint9Painter
123 * <code>PAINT_ALL</code> is specified, any other regions
125 * PAINT_ALL | PAINT_CENTER paints everything but the center.
215 if ((componentMask & PAINT_ALL) != 0) {
216 componentMask = (PAINT_ALL - 1) & ~componentMask;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXListPeer.java64 private final static int PAINT_ALL = field in class:XListPeer
383 repaint(getFirstVisibleItem(), getLastVisibleItem(), PAINT_ALL);
400 * PAINT_HIDEFOCUS, PAINT_BACKGROUND, PAINT_ALL, COPY_AREA.
422 painter.paint(g, getFirstVisibleItem(), getLastVisibleItem(), PAINT_ALL);
1089 options = PAINT_ALL;
1204 options |= PAINT_ALL;
1766 options = PAINT_ALL;
1775 options = PAINT_ALL;
1778 options = PAINT_ALL;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DImagePainter.java139 int mask = Paint9Painter.PAINT_ALL;

Completed in 54 milliseconds