HomeSort by relevance Sort by last modified time
    Searched refs:childBounds (Results 1 - 6 of 6) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 178 public static void invalidateGlobalRegion(View view, RectF childBounds) {
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.right
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/list/
SwipeHelper.java 194 public static void invalidateGlobalRegion(View view, RectF childBounds) {
195 // childBounds.offset(view.getTranslationX(), view.getTranslationY());
200 view.getMatrix().mapRect(childBounds);
201 view.invalidate((int) Math.floor(childBounds.left),
202 (int) Math.floor(childBounds.top),
203 (int) Math.ceil(childBounds.right),
204 (int) Math.ceil(childBounds.bottom));
206 Log.v(TAG, "INVALIDATE(" + (int) Math.floor(childBounds.left)
207 + "," + (int) Math.floor(childBounds.top)
208 + "," + (int) Math.ceil(childBounds.right
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeHelper.java 182 public static void invalidateGlobalRegion(View view, RectF childBounds) {
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.right
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
MultiWaveView.java 463 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));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java     [all...]

Completed in 245 milliseconds