Searched defs:clipBounds (Results 1 - 6 of 6) sorted by relevance

/frameworks/support/v4/jellybean-mr2/android/support/v4/view/
H A DViewCompatJellybeanMr2.java31 public static void setClipBounds(View view, Rect clipBounds) { argument
32 view.setClipBounds(clipBounds);
/frameworks/base/libs/hwui/
H A DFrameBuilder.cpp424 // intersect the shadow-casting path with the clipBounds, if present
429 Rect clipBounds; local
430 properties.getClippingRectForFlags(CLIP_TO_CLIP_BOUNDS, &clipBounds);
432 clipBoundsPath.addRect(clipBounds.left, clipBounds.top,
433 clipBounds.right, clipBounds.bottom);
H A DRenderNode.cpp883 // intersect the outline with the clipBounds, if present
889 Rect clipBounds; local
890 properties().getClippingRectForFlags(CLIP_TO_CLIP_BOUNDS, &clipBounds);
892 clipBoundsPath.addRect(clipBounds.left, clipBounds.top,
893 clipBounds.right, clipBounds.bottom);
H A DRenderProperties.h194 bool setClipBounds(const Rect& clipBounds) { argument
196 return RP_SET(mPrimitiveFields.mClipBounds, clipBounds) || ret;
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java436 void setClipBounds(View view, Rect clipBounds); argument
870 public void setClipBounds(View view, Rect clipBounds) { argument
1534 public void setClipBounds(View view, Rect clipBounds) { argument
1535 ViewCompatJellybeanMr2.setClipBounds(view, clipBounds);
3356 * @param view The view to set clipBounds.
3357 * @param clipBounds The rectangular area, in the local coordinates of
3360 public static void setClipBounds(View view, Rect clipBounds) { argument
3361 IMPL.setClipBounds(view, clipBounds);
/frameworks/base/core/java/android/view/
H A DView.java16589 * @param clipBounds The rectangular area, in the local coordinates of
16592 public void setClipBounds(Rect clipBounds) { argument
16593 if (clipBounds == mClipBounds
16594 || (clipBounds != null && clipBounds.equals(mClipBounds))) {
16597 if (clipBounds != null) {
16599 mClipBounds = new Rect(clipBounds);
16601 mClipBounds.set(clipBounds);
16611 * Returns a copy of the current {@link #setClipBounds(Rect) clipBounds}.

Completed in 2564 milliseconds