Searched refs:childBounds (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java179 public static void invalidateGlobalRegion(View view, RectF childBounds) { argument
180 //childBounds.offset(view.getTranslationX(), view.getTranslationY());
185 view.getMatrix().mapRect(childBounds);
186 view.invalidate((int) Math.floor(childBounds.left),
187 (int) Math.floor(childBounds.top),
188 (int) Math.ceil(childBounds.right),
189 (int) Math.ceil(childBounds.bottom));
191 Log.v(TAG, "INVALIDATE(" + (int) Math.floor(childBounds.left)
192 + "," + (int) Math.floor(childBounds.top)
193 + "," + (int) Math.ceil(childBounds
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DMultiWaveView.java463 RectF childBounds = new RectF(0, 0, width, height);
464 childBounds.offset(drawable.getX() - width/2, drawable.getY() - height/2);
468 view.getMatrix().mapRect(childBounds);
469 view.invalidate((int) Math.floor(childBounds.left),
470 (int) Math.floor(childBounds.top),
471 (int) Math.ceil(childBounds.right),
472 (int) Math.ceil(childBounds.bottom));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1704 final Rect childBounds = new Rect();
1710 childBounds.set(location[0], location[1],
1713 if (childBounds.intersects(left, top, right, bottom)) {

Completed in 66 milliseconds