Lines Matching refs:width
419 * @param width the width 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);
435 * @param width the width of the new clip rectangle.
441 public void setClip(int x, int y, int width, int height) {
442 mGraphics.setClip(x, y, width, height);
492 * @param width the width of the source rectangle.
498 public void copyArea(int x, int y, int width, int height,
523 * <code>x</code> and <code>x + width - 1</code>.
527 * <code>width</code> pixels wide by
534 * @param width the width 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));
558 * @param width the width 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);
576 * are at <code>x</code> and <code>x + width</code>,
581 * @param width the width 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));
600 * are at <code>x</code> and <code>x + width - 1</code>,
605 * @param width the width 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.
628 * <code>width + 1</code> pixels wide
634 * @param width the width 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));
651 * @param width the width 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.
680 * <code>width + 1</code> pixels wide
686 * @param width the width 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.
716 * <code>width + 1</code> pixels wide
722 * @param width the width 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);
991 * @param width the width 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
1093 * @param width the width 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);
1176 int width = dx2 - dx1;
1179 addDrawingRect(dx1, dy1, width, height);
1195 * width and height of the specified image with the given color and then
1251 int width = dx2 - dx1;
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) {
1838 /* Wait for the width the image to
1870 * until 'img's width and height are available.