Lines Matching refs:height

420      * @param height the height of the rectangle to intersect the clip with
424 public void clipRect(int x, int y, int width, int height) {
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) {
442 mGraphics.setClip(x, y, width, height);
493 * @param height the height of the source rectangle.
498 public void copyArea(int x, int y, int width, int height,
525 * <code>y</code> and <code>y&nbsp;+&nbsp;height&nbsp;-&nbsp;1</code>.
528 * <code>height</code> pixels tall.
535 * @param height the height of the rectangle to be filled.
540 public void fillRect(int x, int y, int width, int height) {
542 addDrawingRect(new Rectangle2D.Float(x, y, width, height));
559 * @param height the height of the rectangle to clear.
567 public void clearRect(int x, int y, int width, int height) {
568 Rectangle2D.Float rect = new Rectangle2D.Float(x, y, width, height);
578 * <code>y</code> and <code>y&nbsp;+&nbsp;height</code>.
582 * @param height the height of the rectangle to be drawn.
590 public void drawRoundRect(int x, int y, int width, int height,
592 addStrokeShape(new RoundRectangle2D.Float(x, y, width, height, arcWidth, arcHeight));
602 * <code>y</code> and <code>y&nbsp;+&nbsp;height&nbsp;-&nbsp;1</code>.
606 * @param height the height of the rectangle to be filled.
614 public void fillRoundRect(int x, int y, int width, int height,
616 Rectangle2D.Float rect = new Rectangle2D.Float(x, y,width, height);
625 * <code>width</code>, and <code>height</code> arguments.
629 * and <code>height&nbsp;+&nbsp;1</code> pixels tall.
635 * @param height the height of the oval to be drawn.
639 public void drawOval(int x, int y, int width, int height) {
640 addStrokeShape(new Rectangle2D.Float(x, y, width, height));
652 * @param height the height of the oval to be filled.
656 public void fillOval(int x, int y, int width, int height) {
657 Rectangle2D.Float rect = new Rectangle2D.Float(x, y, width, height);
677 * <code>width</code> and <code>height</code> arguments.
681 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
687 * @param height the height of the arc to be drawn.
694 public void drawArc(int x, int y, int width, int height,
696 addStrokeShape(new Rectangle2D.Float(x, y, width, height));
713 * <code>width</code> and <code>height</code> arguments.
717 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
723 * @param height the height of the arc to be filled.
730 public void fillArc(int x, int y, int width, int height,
732 Rectangle2D.Float rect = new Rectangle2D.Float(x, y,width, height);
992 * @param height the height of the rectangle.
1001 int width, int height,
1007 addDrawingRect(x, y, width, height);
1010 return mGraphics.drawImage(img, x, y, width, height, observer);
1022 * width and height of the specified image with the given color and then
1074 * width and height of the specified image with the given color and then
1094 * @param height the height of the rectangle.
1105 int width, int height,
1113 addDrawingRect(x, y, width, height);
1116 return mGraphics.drawImage(img, x, y, width, height, bgcolor, observer);
1177 int height = dy2 - dy1;
1179 addDrawingRect(dx1, dy1, width, height);
1195 * width and height of the specified image with the given color and then
1252 int height = dy2 - dy1;
1254 addDrawingRect(dx1, dy1, width, height);
1774 private void addDrawingRect(float x, float y, float width, float height) {
1776 Rectangle2D.Float bbox = new Rectangle2D.Float(x, y, width, height);
1819 * Notify this object when the height or width become available
1824 int width, int height) {
1854 /* Wait for the height the image to
1870 * until 'img's width and height are available.