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

1234567891011>>

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaMenuBorder.java45 * @param height the height of the painted border
47 public void paintBorder(final Component c, final Graphics g, final int x, final int y, final int width, final int height) { argument
50 //paintButton(c, g, x, y, width, height);
53 //g.drawRect(x,y, width-1, height-1);
H A DAquaScrollRegionBorder.java60 public void paintBorder(final Component c, final Graphics g, final int x, final int y, final int width, final int height) { argument
64 painter.paint(g, c, x, y, width, height);
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy.c78 mlib_s32 height; /* height in lines of src and dst */ local
93 height = mlib_ImageGetHeight(dst);
102 size = height * (width >> 3);
128 for (j = 0; j < height; j++) {
134 for (j = 0; j < height; j++) {
160 size = height * width;
184 for (j = 0; j < height; j++) {
/openjdk7/jdk/test/java/awt/GraphicsDevice/
H A DCloneConfigsTest.java87 public BufferedImage createCompatibleImage(int width, int height) { argument
/openjdk7/jdk/test/java/awt/image/
H A DGetSamplesTest.java45 public static int height = 100; field in class:GetSamplesTest
68 int[] iArray = new int[ width * height + numBands];
69 float[] fArray = new float[ width * height + numBands];
70 double[] dArray = new double[ width * height + numBands];
109 res = new ComponentSampleModel(dataType, width, height, 4, width * 4, new int[] { 0, 1, 2, 3 } );
111 res = new MultiPixelPackedSampleModel(dataType, width, height, 4);
113 res = new SinglePixelPackedSampleModel(dataType, width, height,
116 res = new BandedSampleModel(dataType, width, height, numBands);
118 res = new PixelInterleavedSampleModel(dataType, width, height, 4, width * 4, new int[] { 0, 1, 2, 3 });
/openjdk7/jdk/test/java/awt/xembed/server/
H A DJavaClient.java64 int width, height; field in class:ClientContainer
68 height = 50;
120 height += step;
124 return new Dimension(width, height);
/openjdk7/jdk/test/javax/swing/border/
H A DTest6461042.java47 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { argument
/openjdk7/jdk/test/sun/java2d/loops/
H A DRenderToCustomBufferTest.java47 final BufferedImage dst_dcm = new BufferedImage(width, height,
57 for (int y = 0; y < height; y++) {
76 WritableRaster wr = cm.createCompatibleWritableRaster(width, height);
114 private static final int height = 150; field in class:RenderToCustomBufferTest
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/hw/
H A DAccelGraphicsConfig.java39 * Returns a VolatileImage with specified width, height, transparency
51 * @param height the height of the returned {@code VolatileImage}
62 public VolatileImage createCompatibleVolatileImage(int width, int height, argument
H A DAccelTypedVolatileImage.java45 * @param height width
53 int width, int height, int transparency,
56 super(null, graphicsConfig, width, height, null, transparency,
52 AccelTypedVolatileImage(GraphicsConfiguration graphicsConfig, int width, int height, int transparency, int accType) argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyPrintGraphics.java78 * @param height the height of the clipping rectangle.
83 public Graphics create(int x, int y, int width, int height) { argument
84 Graphics g = getGraphics().create(x, y, width, height);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLMaskBlit.c43 jint width, jint height,
50 if (width <= 0 || height <= 0) {
76 0, 0, width, height,
82 ty2 = ((GLfloat)height) / OGLC_BLIT_TILE_SIZE;
88 j2d_glTexCoord2f(tx2, ty2); j2d_glVertex2i(dstx + width, dsty + height);
89 j2d_glTexCoord2f(tx1, ty2); j2d_glVertex2i(dstx, dsty + height);
41 OGLMaskBlit_MaskBlit(JNIEnv *env, OGLContext *oglc, jint dstx, jint dsty, jint width, jint height, void *pPixels) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXHorizontalScrollbar.java40 public void setSize(int width, int height) { argument
41 super.setSize(width, height);
42 this.barWidth = height;
58 return new Rectangle(getArrowAreaWidth(), 2, width - 2*getArrowAreaWidth(), height-4);
H A DXVerticalScrollbar.java38 public void setSize(int width, int height) { argument
39 super.setSize(width, height);
41 this.barLength = height;
57 return new Rectangle(2, getArrowAreaWidth(), width-4, height - 2*getArrowAreaWidth());
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DAbstractBorder.java58 * @param height the height of the painted border
60 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { argument
100 * @param height the height of the border
103 public Rectangle getInteriorRectangle(Component c, int x, int y, int width, int height) { argument
104 return getInteriorRectangle(c, this, x, y, width, height);
116 * @param height the height of the border
119 public static Rectangle getInteriorRectangle(Component c, Border b, int x, int y, int width, int height) { argument
151 getBaseline(Component c, int width, int height) argument
[all...]
H A DCompoundBorder.java104 * @param height the height of the painted border
106 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { argument
113 ph = height;
H A DEmptyBorder.java82 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { argument
H A DStrokeBorder.java101 * @param height the height of the painted border
106 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { argument
116 g2d.draw(new Rectangle2D.Float(x + size / 2, y + size / 2, width - size, height - size));
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicPanelUI.java87 public int getBaseline(JComponent c, int width, int height) { argument
88 super.getBaseline(c, width, height);
91 return ((AbstractBorder)border).getBaseline(c, width, height);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DLineView.java111 * rows. If the height has changed, the
118 * @param height the height to lay out against >= 0 (not used
120 * is the height inside of the inset area.
122 protected void layout(int width, int height) { argument
123 super.layout(Integer.MAX_VALUE - 1, height);
H A DNoFramesView.java111 protected void layout(int width, int height) { argument
115 super.layout(width, height);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DOffScreenImageSource.java42 int height; field in class:OffScreenImageSource
54 height = image.getHeight();
100 for (int y=0; y < height; y++) {
109 for (int y=0; y < height; y++) {
123 for (int y=0; y < height; y++) {
135 for (int y=0; y < height; y++) {
143 for (int y=0; y < height; y++) {
154 for (int y=0; y < height; y++) {
173 for (int y=0; y < height; y++) {
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DImageObserver.java54 * of the x, y, width, and height arguments depends on the contents
72 * @param height the height.
89 int x, int y, int width, int height);
102 * the height of the base image is now available and can be taken
103 * from the height argument to the imageUpdate callback method.
121 * from the x, y, width, and height arguments to the imageUpdate
131 * drawn is now available to be drawn again. The x, y, width, and height
141 * be drawn again in its final form. The x, y, width, and height
88 imageUpdate(Image img, int infoflags, int x, int y, int width, int height) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DDisplayMode.java29 * The <code>DisplayMode</code> class encapsulates the bit depth, height,
55 * @param height the height of the display, in pixels
65 public DisplayMode(int width, int height, int bitDepth, int refreshRate) { argument
66 this.size = new Dimension(width, height);
72 * Returns the height of the display, in pixels.
73 * @return the height of the display, in pixels
76 return size.height;
H A DGridBagLayoutInfo.java43 int width, height; /* number of cells: horizontal and vertical */ field in class:GridBagLayoutInfo
58 int maxDescent[]; /* Max descent (height - baseline) */
64 * @param height the rows
67 GridBagLayoutInfo(int width, int height) { argument
69 this.height = height;

Completed in 71 milliseconds

1234567891011>>