Lines Matching defs:rect

749      * @param rect The rect to intersect with the current clip
760 public boolean clipRect(@NonNull RectF rect, @NonNull Region.Op op) {
761 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
769 * @param rect The rectangle to intersect with the current clip.
780 public boolean clipRect(@NonNull Rect rect, @NonNull Region.Op op) {
781 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
789 * @param rect The rectangle to intersect with the current clip.
792 public boolean clipRect(@NonNull RectF rect) {
793 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
801 * @param rect The rectangle to perform a difference op with the current clip.
804 public boolean clipOutRect(@NonNull RectF rect) {
805 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
813 * @param rect The rectangle to intersect with the current clip.
816 public boolean clipRect(@NonNull Rect rect) {
817 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
825 * @param rect The rectangle to perform a difference op with the current clip.
828 public boolean clipOutRect(@NonNull Rect rect) {
829 return nClipRect(mNativeCanvasWrapper, rect.left, rect.top, rect.right, rect.bottom,
1055 * @param rect the rect to compare with the current clip
1059 * @return true if the rect (transformed by the canvas' matrix)
1062 public boolean quickReject(@NonNull RectF rect, @NonNull EdgeType type) {
1064 rect.left, rect.top, rect.right, rect.bottom);
1103 * @return true if the rect (transformed by the canvas' matrix)
1726 * @param rect The rect to be drawn
1727 * @param paint The paint used to draw the rect
1729 public void drawRect(@NonNull RectF rect, @NonNull Paint paint) {
1730 super.drawRect(rect, paint);
1752 * @param paint The paint used to draw the rect
1771 * Draw the specified round-rect using the specified paint. The roundrect will be filled or
1774 * @param rect The rectangular bounds of the roundRect to be drawn
1779 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) {
1780 super.drawRoundRect(rect, rx, ry, paint);
1784 * Draw the specified round-rect using the specified paint. The roundrect will be filled or