Searched refs:imgWidth (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DTablePrintable.java210 final int imgWidth = (int)pageFormat.getImageableWidth();
213 if (imgWidth <= 0) {
273 totalColWidth > imgWidth) {
276 assert imgWidth > 0;
278 // it must be, according to the if-condition, since imgWidth > 0
281 sf = (double)imgWidth / (double)totalColWidth;
303 int scaledWidth = (int)(imgWidth / sf);
327 printText(g2d, footerText, fRect, footerFont, imgWidth);
335 printText(g2d, headerText, hRect, headerFont, imgWidth);
343 tempRect.width = imgWidth;
411 printText(Graphics2D g2d, String text, Rectangle2D rect, Font font, int imgWidth) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDragSourceContextPeer.java166 int imgWidth, int imgHight,
162 doDragDrop( long nativeCtxt, Cursor cursor, int[] imageData, int imgWidth, int imgHight, int offsetX, int offsetY) argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DPathGraphics.java1684 int imgWidth = img.getWidth(null);
1687 if (imgWidth < 0 || imgHeight < 0) {
1731 } else if (sx1 > imgWidth) { // empty srcArea, nothing to draw
1732 sx1 = imgWidth;
1736 } else if (sx2 > imgWidth) {
1737 sx2 = imgWidth;
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c759 jint imgWidth = cachedXImage->width; local
762 if (imgWidth < width || imgHeight < height || depth != cachedXImage->depth) {
774 if ((imgWidth < width + 64) && (imgHeight < height + 64)
775 && imgWidth <= maxWidth && imgHeight <= maxHeight)

Completed in 44 milliseconds