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

/packages/apps/Launcher3/src/com/android/launcher3/
H A DWorkspace.java185 private final int[] mTempXY = new int[2]; field in class:Workspace
1854 final int[] position = mTempXY;
2150 float scale = previewProvider.getScaleAndPosition(b, mTempXY);
2151 int dragLayerX = mTempXY[0];
2152 int dragLayerY = mTempXY[1];
2662 mTempXY[0] = getViewportOffsetX() + getPaddingLeft() + boundingLayout.getLeft();
2663 mTempXY[1] = child.getTop() + boundingLayout.getTop();
2665 float scale = mLauncher.getDragLayer().getDescendantCoordRelativeToSelf(this, mTempXY);
2666 outArea.set(mTempXY[0], mTempXY[
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DWorkspace.java174 private final int[] mTempXY = new int[2]; field in class:Workspace
1906 float scale = mLauncher.getDragLayer().getLocationInDragLayer(child, mTempXY);
1908 Math.round(mTempXY[0] - (bmpWidth - scale * child.getWidth()) / 2);
1910 Math.round(mTempXY[1] - (bmpHeight - scale * bmpHeight) / 2

Completed in 87 milliseconds