Searched defs:height (Results 401 - 425 of 483) sorted by relevance

<<11121314151617181920

/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11Renderer.c968 jint width, jint height)
985 srcx, srcy, width, height, dstx, dsty);
963 Java_sun_java2d_x11_X11Renderer_devCopyArea(JNIEnv *env, jobject xr, jlong xsd, jlong gc, jint srcx, jint srcy, jint dstx, jint dsty, jint width, jint height) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWWindowPeer.java271 synchronized native void reshapeFrame(int x, int y, int width, int height); argument
339 int h = (minimumSize.height >= msh) ? minimumSize.height : msh;
368 native void setMinSize(int width, int height); argument
556 public void setBounds(int x, int y, int width, int height, int op) { argument
560 sysH = height;
562 super.setBounds(x, y, width, height, op);
707 public native void updateWindowImpl(int[] data, int width, int height); argument
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DBlitLoops.cpp361 dstOps->width, dstOps->height);
536 srcOps->width, srcOps->height,
723 0, 0, srcOps->width, srcOps->height);
900 jint width, jint height)
909 if (width <= 0 || height <= 0) {
924 srcInfo.bounds.y2 = srcy + height;
928 dstInfo.bounds.y2 = dsty + height;
937 0, 0, srcOps->width, srcOps->height);
958 height = srcInfo.bounds.y2 - srcInfo.bounds.y1;
961 srcx, srcy, width, height);
897 D3DBlitLoops_SurfaceToSwBlit(JNIEnv *env, D3DContext *d3dc, jlong pSrcOps, jlong pDstOps, jint dsttype, jint srcx, jint srcy, jint dstx, jint dsty, jint width, jint height) argument
1018 D3DBlitLoops_CopyArea(JNIEnv *env, D3DContext *d3dc, D3DSDOps *dstOps, jint x, jint y, jint width, jint height, jint dx, jint dy) argument
[all...]
H A DD3DRenderQueue.cpp123 if (y2 > d3dsdo->height) y2 = d3dsdo->height;
491 jint height = NEXT_INT(b); local
492 jint masklen = width * height * sizeof(jint);
494 dstx, dsty, width, height, b);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DWPrinterJob.cpp280 int height = GetDeviceCaps(pdc, VERTRES); local
297 iPrintables[3] = (float)height/resy;
H A Dawt_Choice.cpp49 jint width, height; member in struct:ReshapeStruct
152 jint height = env->GetIntField(target, AwtComponent::heightID); local
163 x, y, width, height,
199 // calculate height of drop-down list part of the combobox
206 // drop-down height snaps to nearest line, so add a
211 // get the height of the field portion of the combobox
224 // gets the total height of the combobox, including drop down
233 // total height = drop down height + field height
374 jint height = env->GetIntField(target, AwtComponent::heightID); local
531 jint height = rs->height; local
786 Java_sun_awt_windows_WChoicePeer_reshape(JNIEnv *env, jobject self, jint x, jint y, jint width, jint height) argument
[all...]
H A Dawt_Dialog.cpp159 jint height = env->GetIntField(target, AwtComponent::heightID); local
163 x, y, width, height,
H A Dawt_List.cpp131 jint height = env->GetIntField(target, AwtComponent::heightID); local
134 x, y, width, height,
187 //Netscape : Override the AwtComponent method so we can set the item height
209 // Listbox is LBS_OWNERDRAWFIXED so the items have the same height
331 /* This size is too big for each item height. */
H A Dawt_MenuItem.cpp475 // int height = env->GetIntField(fontMetrics, AwtFont::heightID);
476 int height = (jint)JNU_CallMethodByName(env, 0, fontMetrics, "getHeight", local
479 measureInfo.itemHeight = height;
565 #define BM_SIZE 26 /* height and width of check.bmp */
H A Dawt_TextComponent.cpp157 jint height = env->GetIntField(target, AwtComponent::heightID); local
160 x, y, width, height,
1108 // (use font metrics on font info for letter to get height? use
H A Dawt_Win32GraphicsDevice.cpp1065 jobject CreateDisplayMode(JNIEnv* env, jint width, jint height, argument
1086 height, bitDepth, refreshRate);
1163 jint width, jint height, jint bitDepth, jint refreshRate)
1172 dm.dmPelsHeight = height;
1211 jint height, jint bitDepth, jint refreshRate) {
1215 jobject displayMode = CreateDisplayMode(env, width, height,
1161 Java_sun_awt_Win32GraphicsDevice_configDisplayMode(JNIEnv* env, jobject graphicsDevice, jint screen, jobject windowPeer, jint width, jint height, jint bitDepth, jint refreshRate) argument
1210 addDisplayMode(JNIEnv* env, jobject arrayList, jint width, jint height, jint bitDepth, jint refreshRate) argument
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngget.c92 return info_ptr->height;
669 png_uint_32 *width, png_uint_32 *height, int *bit_depth,
677 height == NULL || bit_depth == NULL || color_type == NULL)
681 *height = info_ptr->height;
699 png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
757 int *unit, png_fixed_point *width, png_fixed_point *height)
765 *height = png_fixed(png_ptr, atof(info_ptr->scal_s_height),
766 "sCAL height");
777 int *unit, double *width, double *height)
668 png_get_IHDR(png_structp png_ptr, png_infop info_ptr, png_uint_32 *width, png_uint_32 *height, int *bit_depth, int *color_type, int *interlace_type, int *compression_type, int *filter_type) argument
756 png_get_sCAL_fixed(png_structp png_ptr, png_const_infop info_ptr, int *unit, png_fixed_point *width, png_fixed_point *height) argument
776 png_get_sCAL(png_const_structp png_ptr, png_const_infop info_ptr, int *unit, double *width, double *height) argument
792 png_get_sCAL_s(png_const_structp png_ptr, png_const_infop info_ptr, int *unit, png_charpp width, png_charpp height) argument
[all...]
H A Dpngset.c198 png_uint_32 width, png_uint_32 height, int bit_depth,
208 info_ptr->height = height;
215 png_check_IHDR (png_ptr, info_ptr->width, info_ptr->height,
378 png_error(png_ptr, "Invalid sCAL height");
420 double height)
428 else if (height <= 0)
429 png_warning(png_ptr, "Invalid sCAL height ignored");
433 /* Convert 'width' and 'height' to ASCII. */
439 png_ascii_from_fp(png_ptr, sheight, sizeof sheight, height,
197 png_set_IHDR(png_structp png_ptr, png_infop info_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, int interlace_type, int compression_type, int filter_type) argument
419 png_set_sCAL(png_structp png_ptr, png_infop info_ptr, int unit, double width, double height) argument
449 png_set_sCAL_fixed(png_structp png_ptr, png_infop info_ptr, int unit, png_fixed_point width, png_fixed_point height) argument
[all...]
H A Dpngstruct.h129 png_uint_32 height; /* height of image in pixels */ member in struct:png_struct_def
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A DLCMS.c562 int width, height, i; local
576 height = (*env)->GetIntField (env, src, IL_height_fID);
617 for (i = 0; i < height; i++) {
660 IL_height_fID = (*env)->GetFieldID (env, IL, "height", "I");
/openjdk7/jdk/src/share/classes/sun/print/
H A DPathGraphics.java181 * <code>y</code> and <code>y&nbsp;+&nbsp;height</code>.
188 * @param height the height of the rectangle to be drawn.
192 public void drawRect(int x, int y, int width, int height) { argument
202 deviceFrameRect(x, y, width, height, (Color) paint);
215 * <code>y</code> and <code>y&nbsp;+&nbsp;height&nbsp;-&nbsp;1</code>.
218 * <code>height</code> pixels tall.
225 * @param height the height of the rectangle to be filled.
229 public void fillRect(int x, int y, int width, int height){ argument
265 clearRect(int x, int y, int width, int height) argument
286 drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
311 fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
337 drawOval(int x, int y, int width, int height) argument
352 fillOval(int x, int y, int width, int height) argument
394 drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
438 fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
1112 deviceFrameRect(int x, int y, int width, int height, Color color) argument
1125 deviceFillRect(int x, int y, int width, int height, Color color) argument
1433 drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) argument
1538 drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer) argument
[all...]
H A DPeekGraphics.java420 * @param height the height of the rectangle to intersect the clip with
424 public void clipRect(int x, int y, int width, int height) { argument
425 mGraphics.clipRect(x, y, width, height);
436 * @param height the height of the new clip rectangle.
441 public void setClip(int x, int y, int width, int height) { argument
442 mGraphics.setClip(x, y, width, height);
493 * @param height the height o
498 copyArea(int x, int y, int width, int height, int dx, int dy) argument
540 fillRect(int x, int y, int width, int height) argument
567 clearRect(int x, int y, int width, int height) argument
590 drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
614 fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
639 drawOval(int x, int y, int width, int height) argument
656 fillOval(int x, int y, int width, int height) argument
694 drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
730 fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
1000 drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) argument
1104 drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer) argument
1774 addDrawingRect(float x, float y, float width, float height) argument
1822 imageUpdate(Image img, int infoFlags, int x, int y, int width, int height) argument
[all...]
H A DProxyGraphics2D.java356 * @param height the height of the rectangle to intersect the clip with
360 public void clipRect(int x, int y, int width, int height) { argument
361 mGraphics.clipRect(x, y, width, height);
372 * @param height the height of the new clip rectangle.
377 public void setClip(int x, int y, int width, int height) { argument
378 mGraphics.setClip(x, y, width, height);
429 * @param height the height o
434 copyArea(int x, int y, int width, int height, int dx, int dy) argument
474 fillRect(int x, int y, int width, int height) argument
498 clearRect(int x, int y, int width, int height) argument
519 drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
541 fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight) argument
564 drawOval(int x, int y, int width, int height) argument
580 fillOval(int x, int y, int width, int height) argument
614 drawArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
648 fillArc(int x, int y, int width, int height, int startAngle, int arcAngle) argument
852 drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) argument
949 drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer) argument
[all...]
H A DRasterPrinterJob.java330 * Returns the resolution in dots per inch down the height
395 * page. The width and height of the band is
399 int width, int height)
667 int y = bounds.y+bounds.height/3;
880 int y = bounds.y+bounds.height/3;
1514 /* full width/height is not likely to be imageable, but since we
1856 double height = paper.getImageableHeight();
1858 paper.getHeight()-top-height,
1859 width, height);
1905 throw new PrinterException("Paper's imageable height i
398 printBand(byte[] data, int x, int y, int width, int height) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c353 jint height = NEXT_INT(b); local
354 jint masklen = width * height * sizeof(jint);
356 dstx, dsty, width, height, b);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXBaseWindow.java92 int height; field in class:XBaseWindow
290 bounds.height = Math.max(MIN_SIZE, bounds.height);
369 bounds.width, bounds.height, // size
482 public void setSizeHints(long flags, int x, int y, int width, int height) { argument
496 hints.set_height(height);
502 hints.set_min_height(height);
515 if (maxBounds.height != Integer.MAX_VALUE) {
516 hints.set_max_height(maxBounds.height);
522 hints.set_max_height(height);
702 xSetBounds(int x, int y, int width, int height) argument
[all...]
H A DXDecoratedPeer.java132 int minHeight = minimumSize.height - insets.top - insets.bottom;
140 int nh = (bounds.height < minHeight) ? minHeight : bounds.height;
141 if (nw != bounds.width || nh != bounds.height) {
398 * computed width and height with wrong insets, we
469 // The height of area used to display current active input method
477 updateSizeHints(rec.x, rec.y, rec.width, rec.height);
503 newBounds.height - insets.top - insets.bottom);
585 private void reshape(int x, int y, int width, int height, int operation, argument
600 dims.setSize(width, height);
629 setBounds(int x, int y, int width, int height, int op) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11SurfaceData.java76 protected native void initSurface(int depth, int width, int height, argument
425 int width, int height,
430 return new X11PixmapSurfaceData(gc, width, height, image,
755 int height; field in class:X11SurfaceData.X11PixmapSurfaceData
759 int width, int height,
766 this.height = height;
769 initSurface(depth, width, height, drawable);
790 return new Rectangle(width, height);
795 return (x < 0 || y < 0 || (x+w) > width || (y+h) > height);
424 createData(X11GraphicsConfig gc, int width, int height, ColorModel cm, Image image, long drawable, int transparency) argument
758 X11PixmapSurfaceData(X11GraphicsConfig gc, int width, int height, Image image, SurfaceType sType, ColorModel cm, long drawable, int transparency) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRBackendNative.java61 int width, int height);
76 int srcx, int srcy, int width, int height,
87 int width, int height);
92 int x, int y, int width, int height);
145 int x, int y, int width, int height) {
148 x, y, width, height);
292 int width, int height, int maskOff,
295 width, height, maskOff, maskScan, ea, MASK_XIMG);
301 int width, int height,
60 createPixmap(int drawable, int depth, int width, int height) argument
75 copyArea(int src, int dst, long gc, int srcx, int srcy, int width, int height, int dstx, int dsty) argument
84 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
89 renderRectangle(int dst, byte op, short red, short green, short blue, short alpha, int x, int y, int width, int height) argument
144 renderRectangle(int dst, byte op, XRColor color, int x, int y, int width, int height) argument
290 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
298 putMaskNative(int drawable, long gc, byte[] imageData, int sx, int sy, int dx, int dy, int width, int height, int maskOff, int maskScan, float ea, long xImg) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java73 * vertical axis as well as setting the y and height of the
96 * Along the vertical axis the parallel group is the maximum of the height
97 * of each of the components. As all three components have the same height,
98 * the parallel group has the same height.
913 int height = parent.getHeight() - insets.top - insets.bottom;
921 height);
925 verticalGroup.setSize(VERTICAL, 0, height);
1108 private Dimension adjustSize(int width, int height) { argument
1111 height + insets.top + insets.bottom);
2404 * The baseline is calculated based on the preferred height o
[all...]

Completed in 113 milliseconds

<<11121314151617181920