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

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DSwipeHelper.java182 public static void invalidateGlobalRegion(View view, RectF childBounds) { argument
183 //childBounds.offset(view.getTranslationX(), view.getTranslationY());
188 view.getMatrix().mapRect(childBounds);
189 view.invalidate((int) Math.floor(childBounds.left),
190 (int) Math.floor(childBounds.top),
191 (int) Math.ceil(childBounds.right),
192 (int) Math.ceil(childBounds.bottom));
194 LogUtils.v(TAG, "INVALIDATE(" + (int) Math.floor(childBounds.left)
195 + "," + (int) Math.floor(childBounds.top)
196 + "," + (int) Math.ceil(childBounds
[all...]

Completed in 68 milliseconds