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

  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 52 private int[] mTmpXY = new int[2];
298 mTmpXY[0] = 0;
299 mTmpXY[1] = 0;
300 float scale = getDescendantCoordRelativeToSelf(descendant, mTmpXY);
301 r.set(mTmpXY[0], mTmpXY[1],
302 mTmpXY[0] + descendant.getWidth(), mTmpXY[1] + descendant.getHeight());
CellLayout.java 83 private final int[] mTmpXY = new int[2];
752 final int cellXY[] = mTmpXY;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DragLayer.java 48 private int[] mTmpXY = new int[2];
336 mTmpXY[0] = 0;
337 mTmpXY[1] = 0;
338 float scale = getDescendantCoordRelativeToSelf(descendant, mTmpXY);
340 r.set(mTmpXY[0], mTmpXY[1],
341 (int) (mTmpXY[0] + scale * descendant.getMeasuredWidth()),
342 (int) (mTmpXY[1] + scale * descendant.getMeasuredHeight()));
    [all...]
CellLayout.java 84 private final int[] mTmpXY = new int[2];
751 final int cellXY[] = mTmpXY;
    [all...]
  /frameworks/base/core/java/android/widget/
StackView.java     [all...]

Completed in 63 milliseconds