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

/packages/apps/Launcher2/src/com/android/launcher2/
H A DDragLayer.java52 private int[] mTmpXY = new int[2]; field in class:DragLayer
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());
H A DCellLayout.java83 private final int[] mTmpXY = new int[2]; field in class:CellLayout
752 final int cellXY[] = mTmpXY;
1453 final int[] cellXY = mTmpXY;
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
H A DDragLayer.java89 private final int[] mTmpXY = new int[2]; field in class:DragLayer
496 mTmpXY[0] = 0;
497 mTmpXY[1] = 0;
498 float scale = getDescendantCoordRelativeToSelf(descendant, mTmpXY);
500 r.set(mTmpXY[0], mTmpXY[1],
501 (int) (mTmpXY[0] + scale * descendant.getMeasuredWidth()),
502 (int) (mTmpXY[1] + scale * descendant.getMeasuredHeight()));

Completed in 85 milliseconds