Searched defs:width (Results 401 - 425 of 532) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Scrollbar.cpp136 jint width = env->GetIntField(target, AwtComponent::widthID); local
140 x, y, width, height,
/openjdk7/jdk/test/java/awt/Component/isLightweightCrash/
H A DStubPeerCrash.java87 public void repaint(long tm, int x, int y, int width, int height){}; argument
89 public void setBounds(int x, int y, int width, int height, int op){}; argument
113 public Image createImage(int width, int height){return null;}; argument
114 public VolatileImage createVolatileImage(int width, int height){return null;}; argument
187 public void reshape(int x, int y, int width, int height){}; argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DPretty.java65 /** Indentation width (can be reassigned from outside).
67 public int width = 4; field in class:Pretty
88 /** Increase left margin by indentation width.
91 lmargin = lmargin + width;
94 /** Decrease left margin by indentation width.
97 lmargin = lmargin - width;
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_parseImage.h110 int width; /* Width of the raster */ member in struct:__anon674
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djquant1.c473 JDIMENSION width = cinfo->output_width; local
479 for (col = width; col > 0; col--) {
503 JDIMENSION width = cinfo->output_width; local
508 for (col = width; col > 0; col--) {
533 JDIMENSION width = cinfo->output_width; local
538 (size_t) (width * SIZEOF(JSAMPLE)));
547 for (col = width; col > 0; col--) {
586 JDIMENSION width = cinfo->output_width; local
597 for (col = width; col > 0; col--) {
636 JDIMENSION width local
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageColorTrue2Index.c84 sdata, ddata, width, colormap ); \
2548 mlib_s32 y, width, height, sstride, dstride, schann; local
2564 width = mlib_ImageGetWidth(src);
4188 mlib_s32 width,
H A Dmlib_image_types.h117 mlib_s32 width; /* width of image in pixels, x dimension */ member in struct:__anon781
149 * V = 0 - stride == width => 1-D vector
150 * 1 - stride != width
156 * whint - last 4 bits of width
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DMaskFill.c78 jint width = rasInfo.bounds.x2 - rasInfo.bounds.x1; local
91 width, height,
123 jint width = cx2 - cx1; local
146 for (x = 0; x < width; x++) {
153 pMask[width-1] = DblToMask(y1 * x2);
157 width, 1,
209 for (x = 0; x < width; x++) {
216 pMask[width-1] = DblToMask(y2 * x2);
220 width, 1,
552 jint width local
731 jint width = ix2 - ix1; local
790 jint width = cx2 - cx1; local
1023 jint width = ix2 - ix1; local
[all...]
/openjdk7/jdk/src/share/demo/applets/SpreadSheet/
H A DSpreadSheet.java116 inputArea = new SpreadSheetInput(null, this, d.width - 2, cellHeight - 1,
253 (d.width - i) / 2, 12);
255 g.fillRect(0, cellHeight, d.width, cellHeight);
260 g.draw3DRect(0, cy, d.width, 2, true);
295 d.width,
472 int width; field in class:Cell
482 int width,
488 this.width = width;
731 g.fillRect(x, y, width
478 Cell(SpreadSheet app, Color bgColor, Color fgColor, Color highlightColor, int width, int height) argument
831 int width; field in class:InputField
836 InputField(String initValue, Applet app, int width, int height, Color bgColor, Color fgColor) argument
912 SpreadSheetInput(String initValue, SpreadSheet app, int width, int height, Color bgColor, Color fgColor) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DProxyGraphics.java97 * is specified by the <code>width</code> and <code>height</code>
103 * @param width the width of the clipping rectangle.
109 public Graphics create(int x, int y, int width, int height) { argument
110 return new ProxyGraphics(g.create(x, y, width, height));
264 * @param width the width of the rectangle to intersect the clip with
269 public void clipRect(int x, int y, int width, int height) { argument
270 g.clipRect(x, y, width, height);
281 * @param width th
287 setClip(int x, int y, int width, int height) argument
350 copyArea(int x, int y, int width, int height, int dx, int dy) argument
387 fillRect(int x, int y, int width, int height) argument
407 drawRect(int x, int y, int width, int height) argument
430 clearRect(int x, int y, int width, int height) argument
450 drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
471 fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
495 draw3DRect(int x, int y, int width, int height, boolean raised) argument
515 fill3DRect(int x, int y, int width, int height, boolean raised) argument
537 drawOval(int x, int y, int width, int height) argument
552 fillOval(int x, int y, int width, int height) argument
593 drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
634 fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
858 drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) argument
938 drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer) argument
1134 hitClip(int x, int y, int width, int height) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLContext.c85 jint width = dstOps->width; local
90 width, height,
96 (GLsizei)width, (GLsizei)height);
99 j2d_glOrtho(0.0, (GLdouble)width, (GLdouble)height, 0.0, -1.0, 1.0);
228 jint width = x2 - x1; local
233 x1, y1, width, height);
239 if ((width < 0) || (height < 0)) {
241 width = 0;
254 width, heigh
516 OGLContext_CreateBlitTexture(GLenum internalFormat, GLenum pixelFormat, GLuint width, GLuint height) argument
654 jint width = 1, height = 1; local
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DListHelper.java246 * Returns width of the text of the longest item
376 return (x <= bounds.width) &&
377 (x >= bounds.width - SCROLLBAR_WIDTH) &&
388 int sbWidth = vsbVis ? bounds.width - SCROLLBAR_WIDTH : bounds.width;
402 x - (bounds.width - SCROLLBAR_WIDTH),
508 int width = bounds.width - 2*ITEM_MARGIN - 2*BORDER_WIDTH - (vsbVis ? SCROLLBAR_WIDTH : 0);
514 x, y, width, height,
537 int x, int y, int width, in
534 paintItem(Graphics g, Color[] colors, String string, int x, int y, int width, int height, boolean selected, boolean focused) argument
[all...]
H A DXBaseMenuWindow.java260 new Rectangle(0, 0, width, height));
663 int width = windowSize.width;
672 if (width > screenSize.width) {
673 width = screenSize.width;
675 if (x + width > screenSize.width) {
676 x = screenSize.width
863 draw3DRect(Graphics g, int x, int y, int width, int height, boolean raised) argument
[all...]
H A DXChoicePeer.java111 // The choice's popup width and location should be adjust to appear
169 public void setBounds(int x, int y, int width, int height, int op) { argument
172 int oldWidth = this.width;
174 super.setBounds(x, y, width, height, op);
175 if (unfurled && (oldX != this.x || oldY != this.y || oldWidth != this.width || oldHeight != this.height) ) {
535 //textRect.width = fm.stringWidth(text);
536 textRect.width = fm.stringWidth(text == null ? "" : text);
537 textRect.x = Math.max(minTextX, size.width / 2 - textRect.width / 2);
542 focusRect.width
[all...]
H A DXEmbedChildProxyPeer.java86 public void repaint(long tm, int x, int y, int width, int height) {} argument
88 public void setBounds(int x, int y, int width, int height, int op) { argument
92 XlibWrapper.XMoveResizeWindow(XToolkit.getDisplay(), handle, x, y, width, height);
255 public Image createImage(int width, int height) { return null; } argument
256 public VolatileImage createVolatileImage(int width, int height) { return null; } argument
315 public void reshape(int x, int y, int width, int height) { argument
316 setBounds(x, y, width, height, SET_BOUNDS);
H A DXScrollbar.java74 int width, height; // Dimensions of the visible part of the parent window field in class:XScrollbar
76 // equal to (width, height) for vertical,
120 public void setSize(int width, int height) { argument
121 if (log.isLoggable(PlatformLogger.FINER)) log.finer("Setting scroll bar " + this + " size to " + width + "x" + height);
122 this.width = width;
134 int x = width / 2 - getArrowWidth()/2;
162 * @param width the width of the scrollbar
178 buffer = graphicsConfig.createCompatibleImage(width, heigh
[all...]
H A DXTextFieldPeer.java116 setBounds(x, y, width, height, SET_BOUNDS);
432 public void setBounds(int x, int y, int width, int height, int op) { argument
433 super.setBounds(x, y, width, height, op);
453 xtext.setBounds(childX,childY,width,height);
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsConfig.java376 * Creates a new hidden-acceleration image of the given width and height
380 int width, int height)
385 model.createCompatibleWritableRaster(width, height);
379 createAcceleratedImage(Component target, int width, int height) argument
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRBackend.java48 public int createPixmap(int drawable, int depth, int width, int height); argument
57 int width, int height, int dstx, int dsty);
61 int width, int height, int maskOff,
81 int x, int y, int width, int height);
88 int dstX, int dstY, int width, int height);
56 copyArea(int src, int dst, long gc, int srcx, int srcy, int width, int height, int dstx, int dsty) argument
59 putMaskImage(int drawable, long gc, byte[] imageData, int sx, int sy, int dx, int dy, int width, int height, int maskOff, int maskScan, float ea) argument
80 renderRectangle(int dst, byte op, XRColor color, int x, int y, int width, int height) argument
86 renderComposite(byte op, int src, int mask, int dst, int srcX, int srcY, int maskX, int maskY, int dstX, int dstY, int width, int height) argument
H A DXRSurfaceData.java53 protected native void XRInitSurface(int depth, int width, int height, argument
224 int width, int height,
238 (gc, width, height, image, getSurfaceType(gc, transparency),
580 int width; field in class:XRSurfaceData.XRPixmapSurfaceData
584 public XRPixmapSurfaceData(XRGraphicsConfig gc, int width, int height, argument
590 this.width = width;
594 initSurface(depth, width, height, drawable, pictFormat);
600 public void initSurface(int depth, int width, int height, argument
604 XRInitSurface(depth, width, heigh
223 createData(XRGraphicsConfig gc, int width, int height, ColorModel cm, Image image, long drawable, int transparency) argument
[all...]
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java643 private JTextField createTextField(int width) { argument
644 JTextField f = new JTextField(width);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphics.java121 public Graphics create(int x, int y, int width, int height) { argument
125 debugGraphics.graphics = graphics.create(x, y, width, height);
290 public void clipRect(int x, int y, int width, int height) { argument
291 graphics.clipRect(x, y, width, height);
294 " Setting clipRect: " + (new Rectangle(x, y, width, height)) +
302 public void setClip(int x, int y, int width, int height) { argument
303 graphics.setClip(x, y, width, height);
331 public void drawRect(int x, int y, int width, int height) { argument
337 new Rectangle(x, y, width, height));
344 debugGraphics.drawRect(x, y, width, heigh
365 fillRect(int x, int y, int width, int height) argument
399 clearRect(int x, int y, int width, int height) argument
433 drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
471 fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
543 draw3DRect(int x, int y, int width, int height, boolean raised) argument
578 fill3DRect(int x, int y, int width, int height, boolean raised) argument
613 drawOval(int x, int y, int width, int height) argument
646 fillOval(int x, int y, int width, int height) argument
679 drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
716 fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
1044 drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) argument
1134 drawImage(Image img, int x, int y,int width, int height, Color bgcolor, ImageObserver observer) argument
1288 copyArea(int x, int y, int width, int height, int destX, int destY) argument
[all...]
H A DJInternalFrame.java1490 * @param width an integer giving the component's new width in pixels
1493 public void reshape(int x, int y, int width, int height) { argument
1494 super.reshape(x, y, width, height);
2238 setSize(r.width, r.height);
2254 setSize(r.width, r.height);
H A DJPopupMenu.java347 long popupRightX = (long)popupLocation.x + (long)popupSize.width;
349 int scrWidth = scrBounds.width;
365 popupLocation.x = scrRightX - popupSize.width;
736 if (pref == null || pref.width != getWidth() ||
1033 * Sets the size of the Popup window to the specified width and
1035 * <code>setPreferredSize(new Dimension(width, height))</code>.
1037 * @param width the new width of the Popup in pixels
1042 public void setPopupSize(int width, int height) { argument
1043 setPopupSize(new Dimension(width, heigh
[all...]
H A DJSpinner.java811 preferredSize.width += childSize.width;
830 minimumSize.width += childSize.width;
875 public int getBaseline(int width, int height) { argument
877 super.getBaseline(width, height);
879 width = width - insets.left - insets.right;
881 int baseline = getComponent(0).getBaseline(width, height);
1037 /* TBD - initializing the column width o
[all...]

Completed in 158 milliseconds

<<11121314151617181920>>