Lines Matching defs:height

356      * @param height the height of the rectangle to intersect the clip with
360 public void clipRect(int x, int y, int width, int height) {
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) {
378 mGraphics.setClip(x, y, width, height);
429 * @param height the height of the source rectangle.
434 public void copyArea(int x, int y, int width, int height,
436 mGraphics.copyArea(x, y, width, height, dx, dy);
459 * {@code y} and <code>y&nbsp;+&nbsp;height&nbsp;-&nbsp;1</code>.
462 * {@code height} pixels tall.
469 * @param height the height of the rectangle to be filled.
474 public void fillRect(int x, int y, int width, int height) {
475 mGraphics.fillRect(x, y, width, height);
490 * @param height the height of the rectangle to clear.
498 public void clearRect(int x, int y, int width, int height) {
499 mGraphics.clearRect(x, y, width, height);
507 * {@code y} and <code>y&nbsp;+&nbsp;height</code>.
511 * @param height the height of the rectangle to be drawn.
519 public void drawRoundRect(int x, int y, int width, int height,
521 mGraphics.drawRoundRect(x, y, width, height, arcWidth, arcHeight);
529 * {@code y} and <code>y&nbsp;+&nbsp;height&nbsp;-&nbsp;1</code>.
533 * @param height the height of the rectangle to be filled.
541 public void fillRoundRect(int x, int y, int width, int height,
543 mGraphics.fillRoundRect(x, y, width, height, arcWidth, arcHeight);
550 * {@code width}, and {@code height} arguments.
554 * and <code>height&nbsp;+&nbsp;1</code> pixels tall.
560 * @param height the height of the oval to be drawn.
564 public void drawOval(int x, int y, int width, int height) {
565 mGraphics.drawOval(x, y, width, height);
576 * @param height the height of the oval to be filled.
580 public void fillOval(int x, int y, int width, int height) {
581 mGraphics.fillOval(x, y, width, height);
597 * {@code width} and {@code height} arguments.
601 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
607 * @param height the height of the arc to be drawn.
614 public void drawArc(int x, int y, int width, int height,
616 mGraphics.drawArc(x, y, width, height, startAngle, arcAngle);
631 * {@code width} and {@code height} arguments.
635 * by <code>height&nbsp;+&nbsp;1</code> pixels tall.
641 * @param height the height of the arc to be filled.
648 public void fillArc(int x, int y, int width, int height,
650 mGraphics.fillArc(x, y, width, height, startAngle, arcAngle);
844 * @param height the height of the rectangle.
853 int width, int height,
856 return mGraphics.drawImage(img, x, y, width, height, observer);
867 * width and height of the specified image with the given color and then
919 * width and height of the specified image with the given color and then
939 * @param height the height of the rectangle.
950 int width, int height,
962 result = mGraphics.drawImage(imageCopy, x, y, width, height, null);
964 result = mGraphics.drawImage(img, x, y, width, height,
1034 * width and height of the specified image with the given color and then
1144 int height = img.getHeight(null);
1146 if (width > 0 && height > 0) {
1161 imageCopy = new BufferedImage(width, height, imageType);
1172 /* We couldn't get the width or height of the image