Searched defs:fillRect (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/awt/java/awt/
H A DGraphics.java101 // fillRect is used instead of drawLine to bypass stroke
115 fillRect(x, y, width, 1);
116 fillRect(x, y + 1, 1, height);
119 fillRect(x + width, y, 1, height);
120 fillRect(x + 1, y + height, width, 1);
212 // The resulting rect is (width)x(height), same as fillRect.
214 // to the default values. fillRect is used instead of drawLine to
231 fillRect(x + 1, y + 1, width - 1, height - 1);
234 fillRect(x, y, width, 1);
235 fillRect(
790 public abstract void fillRect(int x, int y, int width, int height); method in class:Graphics
[all...]
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCommonGraphics2D.java188 fillRect(x, y, width, height);
757 public void fillRect(int x, int y, int width, int height) { method in class:CommonGraphics2D
759 System.err.println("CommonGraphics2D.fillRect("+x+", "+y+", "+width+", "+height+")"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
/frameworks/base/awt/com/android/internal/awt/
H A DAndroidGraphics2D.java1096 public void fillRect(int x, int y, int width, int height) { method in class:AndroidGraphics2D
1314 fillRect(x+1, y+1, width-1, height-1);
1317 fillRect(x, y, width, 1);
1318 fillRect(x, y+1, 1, height);
1321 fillRect(x+width, y, 1, height);
1322 fillRect(x+1, y+height, width, 1);
1338 fillRect(x, y, width, 1);
1339 fillRect(x, y+1, 1, height);
1342 fillRect(x+width, y, 1, height);
1343 fillRect(
[all...]

Completed in 150 milliseconds