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

1234567891011>>

/openjdk7/jdk/src/share/classes/java/applet/
H A DAppletStub.java83 * <applet code="Clock" width=50 height=50>
107 * @param width the new requested width for the applet.
110 void appletResize(int width, int height); argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DDimension.java32 * The <code>Dimension</code> class encapsulates the width and
40 * Normally the values of <code>width</code>
44 * If the value of <code>width</code> or <code>height</code> is
57 * The width dimension; negative values can be used.
64 public int width; field in class:Dimension
95 * Creates an instance of <code>Dimension</code> with a width
103 * Creates an instance of <code>Dimension</code> whose width
107 * <code>width</code> and
111 this(d.width, d.height);
116 * it to the specified width an
121 Dimension(int width, int height) argument
153 setSize(double width, double height) argument
199 setSize(int width, int height) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaMenuBarBorder.java44 * @param width the width 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);
52 g.drawLine(x, y + height - 1, x + width, y + height - 1);
H A DAquaMenuBorder.java44 * @param width the width 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.c77 mlib_s32 width; /* width in bytes of src and dst */ local
92 width = mlib_ImageGetWidth(dst) * mlib_ImageGetChannels(dst);
102 size = height * (width >> 3);
129 mlib_ImageCopy_bit_al(sa, da, width, s_offset);
135 mlib_ImageCopy_bit_na(sa, da, width, s_offset, d_offset);
145 width *= 2;
149 width *= 4;
152 width *= 8;
160 size = height * width;
[all...]
/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.java44 public static int width = 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, heigh
[all...]
/openjdk7/jdk/test/java/awt/xembed/server/
H A DJavaClient.java64 int width, height; field in class:ClientContainer
67 width = 500;
119 width += step;
124 return new Dimension(width, height);
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPoolData.java59 int width() { method in class:ConstantPoolData
H A DNumberConstantData.java72 return (width() == 1) ? 0 : 3;
78 int width() { method in class:NumberConstantData
/openjdk7/jdk/test/java/util/Formattable/
H A DStockName.java46 public void formatTo(Formatter fmt, int f, int width, int precision) { argument
65 // apply width and justification
67 if (len < width)
68 for (int i = 0; i < width - len; i++)
/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,
58 for (int x = 0; x < width; x++) {
76 WritableRaster wr = cm.createCompatibleWritableRaster(width, height);
113 private static final int width = 230; 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
50 * @param width the width of the returned {@code VolatileImage}
62 public VolatileImage createCompatibleVolatileImage(int width, int height, argument
H A DAccelTypedVolatileImage.java44 * @param width width
45 * @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.java77 * @param width the width 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,
81 tx2 = ((GLfloat)width) / OGLC_BLIT_TILE_SIZE;
87 j2d_glTexCoord2f(tx2, ty1); j2d_glVertex2i(dstx + width, dsty);
88 j2d_glTexCoord2f(tx2, ty2); j2d_glVertex2i(dstx + width, 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);
43 this.barLength = width;
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);
40 this.barWidth = width;
57 return new Rectangle(2, getArrowAreaWidth(), width-4, height - 2*getArrowAreaWidth());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/ia64/
H A DIA64FloatRegister.java44 public int getNumber(int width) { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCFloatRegister.java44 public int getNumber(int width) { argument
45 switch (width) {
58 throw new RuntimeException("Invalid floating point width supplied");
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DAbstractBorder.java57 * @param width the width of the painted border
60 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { argument
99 * @param width the width 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);
115 * @param width the width of the border
119 public static Rectangle getInteriorRectangle(Component c, Border b, int x, int y, int width, in argument
151 getBaseline(Component c, int width, int height) argument
[all...]
H A DCompoundBorder.java103 * @param width the width of the painted border
106 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { argument
112 pw = width;
H A DEmptyBorder.java82 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { argument

Completed in 49 milliseconds

1234567891011>>