Lines Matching defs:rect

529      * @param rect The rect to intersect with the current clip
533 public boolean clipRect(RectF rect, Region.Op op) {
535 rect.left, rect.top, rect.right, rect.bottom,
543 * @param rect The rectangle to intersect with the current clip.
547 public boolean clipRect(Rect rect, Region.Op op) {
549 rect.left, rect.top, rect.right, rect.bottom,
557 * @param rect The rectangle to intersect with the current clip.
560 public native boolean clipRect(RectF rect);
566 * @param rect The rectangle to intersect with the current clip.
569 public native boolean clipRect(Rect rect);
707 * @param rect the rect to compare with the current clip
709 * @return true if the rect (transformed by the canvas' matrix)
712 public boolean quickReject(RectF rect, EdgeType type) {
713 return native_quickReject(mNativeCanvas, rect, type.nativeInt);
750 * @param type true if the rect should be considered antialiased,
753 * @return true if the rect (transformed by the canvas' matrix)
913 * @param rect The rect to be drawn
914 * @param paint The paint used to draw the rect
916 public void drawRect(RectF rect, Paint paint) {
917 native_drawRect(mNativeCanvas, rect, paint.mNativePaint);
940 * @param paint The paint used to draw the rect
1009 * Draw the specified round-rect using the specified paint. The roundrect
1012 * @param rect The rectangular bounds of the roundRect to be drawn
1017 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) {
1018 if (rect == null) {
1021 native_drawRoundRect(mNativeCanvas, rect, rx, ry,
1675 RectF rect,
1695 private static native void native_drawRect(int nativeCanvas, RectF rect,
1709 RectF rect, float rx,