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

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java92 public abstract void fillRect(float x, float y, float width, float height, int color); method in interface:GLCanvas
H A DGLES20Canvas.java575 public void fillRect(float x, float y, float width, float height, int color) { method in class:GLES20Canvas
780 fillRect(target.left, target.top, target.width(), target.height(), toColor);
/frameworks/base/core/java/android/view/
H A DViewGroup.java2767 private static void fillRect(Canvas canvas, Paint paint, int x1, int y1, int x2, int y2) { method in class:ViewGroup
2784 fillRect(c, paint, x1, y1, x1 + dx, y1 + lw * sign(dy));
2785 fillRect(c, paint, x1, y1, x1 + lw * sign(dx), y1 + dy);
2810 fillRect(canvas, paint, x1, y1, x4, y2);
2811 fillRect(canvas, paint, x1, y2, x2, y3);
2812 fillRect(canvas, paint, x3, y2, x4, y3);
2813 fillRect(canvas, paint, x1, y3, x4, y4);

Completed in 134 milliseconds