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

/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java178 public static void invalidateGlobalRegion(View view, RectF childBounds) { argument
179 //childBounds.offset(view.getTranslationX(), view.getTranslationY());
184 view.getMatrix().mapRect(childBounds);
185 view.invalidate((int) Math.floor(childBounds.left),
186 (int) Math.floor(childBounds.top),
187 (int) Math.ceil(childBounds.right),
188 (int) Math.ceil(childBounds.bottom));
190 Log.v(TAG, "INVALIDATE(" + (int) Math.floor(childBounds.left)
191 + "," + (int) Math.floor(childBounds.top)
192 + "," + (int) Math.ceil(childBounds
[all...]

Completed in 116 milliseconds