Searched refs:HEIGHT (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jdk/test/javax/swing/plaf/nimbus/
H A DTest6741426.java39 static final int HEIGHT = 80; field in class:Test6741426
46 new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_ARGB);
47 tf.setSize(WIDTH, HEIGHT);
H A DColorCustomizationTest.java46 final static int HEIGHT = 100; field in class:ColorCustomizationTest
57 g = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_ARGB).getGraphics();
/openjdk7/jdk/test/com/sun/java/swing/plaf/gtk/
H A DTest6635110.java40 static final int HEIGHT = 80; field in class:Test6635110
42 new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_ARGB);
56 c.setSize(WIDTH, HEIGHT);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DImageObserver.java59 * <code>HEIGHT</code>, <code>PROPERTIES</code>, <code>SOMEBITS</code>,
65 * flags: <code>WIDTH</code>, <code>HEIGHT</code>,
77 * @see #HEIGHT
107 public static final int HEIGHT = 2; field in interface:ImageObserver
H A DPixelGrabber.java381 flags |= (ImageObserver.WIDTH | ImageObserver.HEIGHT);
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DImageFactory.java42 public static int HEIGHT = 256; field in class:ImageFactory
77 SampleModel sm = ccm.createCompatibleSampleModel(WIDTH, HEIGHT);
79 HEIGHT);
87 BufferedImage image = new BufferedImage(WIDTH, HEIGHT,
123 SampleModel sm = dcm.createCompatibleSampleModel(WIDTH, HEIGHT);
125 HEIGHT);
148 for (int j = 0; j < HEIGHT; j++) {
165 for (int j = 0; j < HEIGHT; j++) {
175 for (int j = 0; j < HEIGHT; j++) {
185 for (int j = 0; j < HEIGHT;
[all...]
/openjdk7/jdk/test/javax/swing/JInternalFrame/
H A DTest6325652.java44 private static final int HEIGHT = 300; field in class:Test6325652
101 internal.setBounds(10 * index, 10 * index, WIDTH, HEIGHT);
H A DTest6505027.java58 private static final int HEIGHT = 200; field in class:Test6505027
75 frame.setBounds(OFFSET, OFFSET, WIDTH, HEIGHT);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DToolkitImage.java126 if ((availinfo & ImageObserver.HEIGHT) == 0) {
127 reconstruct(ImageObserver.HEIGHT);
141 if ((availinfo & ImageObserver.HEIGHT) == 0) {
143 if ((availinfo & ImageObserver.HEIGHT) == 0) {
194 ImageObserver.HEIGHT |
254 addInfo(ImageObserver.WIDTH | ImageObserver.HEIGHT);
268 ImageObserver.HEIGHT)) != 0) {
H A DImageRepresentation.java141 newInfo(image, (ImageObserver.WIDTH | ImageObserver.HEIGHT),
157 availinfo |= ImageObserver.WIDTH | ImageObserver.HEIGHT;
/openjdk7/jdk/test/javax/swing/
H A DSwingTest.java52 private static final int HEIGHT = 480; field in class:SwingTest
90 this.frame.setSize(WIDTH, HEIGHT);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpringLayout.java248 public static final String HEIGHT = "Height"; field in class:SpringLayout
252 private static String[] ALL_VERTICAL = {NORTH, HEIGHT, SOUTH, VERTICAL_CENTER, BASELINE};
277 * SOUTH = NORTH + HEIGHT
279 * VERTICAL_CENTER = NORTH + HEIGHT/2
566 if (defined(verticalHistory, SOUTH, HEIGHT)) {
568 } else if (defined(verticalHistory, VERTICAL_CENTER, HEIGHT)) {
572 } else if (defined(verticalHistory, BASELINE, HEIGHT)) {
631 pushConstraint(HEIGHT, height, false);
726 * <code>SpringLayout.HEIGHT</code>.
748 * @see #HEIGHT
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DBlockView.java237 Object key = (axis == X_AXIS) ? CSS.Attribute.WIDTH : CSS.Attribute.HEIGHT;
417 cssHeight = (CSS.LengthValue) attr.getAttribute(CSS.Attribute.HEIGHT);
H A DParagraphView.java127 CSS.Attribute.HEIGHT);
H A DImageView.java37 * Supports scaling via the HEIGHT and WIDTH attributes of the tag.
732 newHeight = getIntAttr(HTML.Attribute.HEIGHT, -1);
903 if ((flags & ImageObserver.HEIGHT) != 0 && !getElement().
904 getAttributes().isDefined(HTML.Attribute.HEIGHT)) {
H A DHTML.java377 public static final Attribute HEIGHT = new Attribute("height"); field in class:HTML.Attribute
462 HEIGHT,
673 * WIDTH, HEIGHT, ALIGN, NAME, HREF, REL, REV, TITLE, TARGET,
H A DCSS.java281 public static final Attribute HEIGHT = field in class:CSS.Attribute
396 FONT_STYLE, FONT_VARIANT, FONT_WEIGHT, HEIGHT, LETTER_SPACING,
518 valueConvertor.put(CSS.Attribute.HEIGHT, lv);
914 htmlAttrToCssAttrMap.put(HTML.Attribute.HEIGHT,
915 new CSS.Attribute[]{CSS.Attribute.HEIGHT});
/openjdk7/jdk/test/javax/swing/SpringLayout/4726194/
H A Dbug4726194.java114 int[] a3 = getValues(c, new String[]{SpringLayout.NORTH, SpringLayout.HEIGHT, SpringLayout.SOUTH});
116 throw new RuntimeException("NORTH + HEIGHT != SOUTH!!! ");
118 int[] a4 = getValues(c, new String[]{SpringLayout.NORTH, SpringLayout.HEIGHT, SpringLayout.VERTICAL_CENTER});
121 throw new RuntimeException("NORTH + HEIGHT/2 != VERTICAL_CENTER!!! ");
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWTrayIconPeer.java195 ImageObserver.WIDTH | ImageObserver.HEIGHT)) != 0)
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DLoopMacros.h75 HEIGHT, BODY) \
87 } while (--HEIGHT > 0); \
96 WIDTH, HEIGHT, BODY) \
117 } while (--HEIGHT > 0); \
127 XVAR, WIDTH, HEIGHT, \
152 } while (--HEIGHT > 0); \
1557 #define DeclareDrawGlyphListClipVars(PIXELS, ROWBYTES, WIDTH, HEIGHT, \
1562 int WIDTH, HEIGHT; \
1574 #define ClipDrawGlyphList(DST, PIXELS, BYTESPERPIXEL, ROWBYTES, WIDTH, HEIGHT,\
1586 HEIGHT
[all...]
H A DAnyByteBinary.h184 WIDTH, HEIGHT, BODY) \
216 } while (--HEIGHT > 0); \
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSlider.java49 public static final int HEIGHT = 40; field in class:RangeSlider
104 d.height = HEIGHT;
/openjdk7/jdk/src/share/classes/sun/swing/text/
H A DTextComponentPrintable.java249 final int HEIGHT = 500;
254 rendererPane.setSize(WIDTH, HEIGHT);
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java1828 if((infoFlags & (WIDTH | HEIGHT)) != 0) {
1911 boolean dontCallMeAgain = (flags & (HEIGHT | ABORT | ERROR)) != 0;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTrayIconPeer.java603 ImageObserver.WIDTH | ImageObserver.HEIGHT)) != 0)

Completed in 110 milliseconds

12