Searched defs:getHeight (Results 1 - 25 of 77) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DDimension2D.java69 public abstract double getHeight(); method in class:Dimension2D
95 setSize(d.getWidth(), d.getHeight());
H A DEllipse2D.java132 public double getHeight() { method in class:Ellipse2D.Float
276 public double getHeight() { method in class:Ellipse2D.Double
339 double ellh = getHeight();
363 double ellh = getHeight();
434 bits += java.lang.Double.doubleToLongBits(getHeight()) * 47;
460 (getHeight() == e2d.getHeight()));
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DKernel.java110 final public int getHeight() { method in class:Kernel
H A DVolatileImage.java180 public abstract int getHeight(); method in class:VolatileImage
H A DRenderedImage.java107 int getHeight(); method in interface:RenderedImage
/openjdk7/jdk/src/share/classes/java/awt/
H A DDimension.java138 public double getHeight() { method in class:Dimension
H A DDisplayMode.java75 public int getHeight() { method in class:DisplayMode
131 return (getHeight() == dm.getHeight()
152 return getWidth() + getHeight() + getBitDepth() * 7
H A DFontMetrics.java172 * @see #getHeight()
221 public int getHeight() { method in class:FontMetrics
635 ", height=" + getHeight() + "]";
H A DImage.java71 * @see java.awt.Image#getHeight
86 public abstract int getHeight(ImageObserver observer); method in class:Image
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DLineMetrics.java92 public abstract float getHeight(); method in class:LineMetrics
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAbstractMenuItem.java34 int getHeight(Graphics g); method in interface:XAbstractMenuItem
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DGrowableRectArray.java69 public final int getHeight(int index) { method in class:GrowableRectArray
H A DDirtyRegion.java63 public int getHeight() { method in class:DirtyRegion
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DMediaPrintableArea.java166 getWidth(units), getHeight(units) };
229 public float getHeight(int units) { method in class:MediaPrintableArea
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGlyphPainter1.java68 public float getHeight(GlyphView v) { method in class:GlyphPainter1
70 return metrics.getHeight();
113 int y = alloc.y + metrics.getHeight() - metrics.getDescent();
138 metrics.getHeight());
147 return new Rectangle(alloc.x + width, alloc.y, 0, metrics.getHeight());
H A DGlyphPainter2.java89 public float getHeight(GlyphView v) { method in class:GlyphPainter2
148 alloc.setRect(alloc.getX() + locs[0], alloc.getY(), 1, alloc.getHeight());
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletViewerPanel.java142 public int getHeight() { method in class:AppletViewerPanel
/openjdk7/jdk/src/share/classes/sun/awt/
H A DIconInfo.java97 this.height = ir.getHeight();
100 this.height = image.getHeight(null);
124 public int getHeight() { method in class:IconInfo
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontLineMetrics.java69 public final float getHeight() { method in class:FontLineMetrics
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DRenderableImage.java127 float getHeight(); method in interface:RenderableImage
151 * Math.round(h*(getWidth()/getHeight())).
153 * Math.round(w*(getHeight()/getWidth())). One of
H A DRenderableImageOp.java164 public float getHeight() { method in class:RenderableImageOp
168 return (float)boundingBox.getHeight();
225 * Math.round(h*(getWidth()/getHeight())).
227 * Math.round(w*(getHeight()/getWidth())). One of
246 double sy = (double)h/getHeight();
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPageFormat.java124 width = mPaper.getHeight();
136 public double getHeight() { method in class:PageFormat
141 height = mPaper.getHeight();
165 x = mPaper.getHeight()
342 matrix[4] = 0; matrix[5] = mPaper.getHeight();
H A DPaper.java126 public double getHeight() { method in class:Paper
207 return mImageableArea.getHeight();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotation.java106 computed information using getWidth() and getHeight(). Separated
117 height += (int) bounds.getHeight();
118 heights.add(new Integer((int) bounds.getHeight()));
126 public int getHeight() { method in class:Annotation
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DSunVolatileImage.java125 public int getHeight() { method in class:SunVolatileImage
227 public int getHeight(ImageObserver observer) { method in class:SunVolatileImage
228 return getHeight();
236 return graphicsConfig.createCompatibleImage(getWidth(), getHeight(),

Completed in 68 milliseconds

1234