Home | History | Annotate | Download | only in view

Lines Matching refs:clipBounds

13382      * @param clipBounds The rectangular area, in the local coordinates of
13385 public void setClipBounds(Rect clipBounds) {
13386 if (clipBounds != null) {
13387 if (clipBounds.equals(mClipBounds)) {
13392 mClipBounds = new Rect(clipBounds);
13394 invalidate(Math.min(mClipBounds.left, clipBounds.left),
13395 Math.min(mClipBounds.top, clipBounds.top),
13396 Math.max(mClipBounds.right, clipBounds.right),
13397 Math.max(mClipBounds.bottom, clipBounds.bottom));
13398 mClipBounds.set(clipBounds);
13409 * Returns a copy of the current {@link #setClipBounds(Rect) clipBounds}.