Home
last modified time | relevance | path

Searched refs:sPoint (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DUtilities.java83 private static final float[] sPoint = new float[2]; field in Utilities
164 sPoint[0] = coord[0]; in getDescendantCoordRelativeToAncestor()
165 sPoint[1] = coord[1]; in getDescendantCoordRelativeToAncestor()
173 sPoint[0] -= v.getScrollX(); in getDescendantCoordRelativeToAncestor()
174 sPoint[1] -= v.getScrollY(); in getDescendantCoordRelativeToAncestor()
177 v.getMatrix().mapPoints(sPoint); in getDescendantCoordRelativeToAncestor()
178 sPoint[0] += v.getLeft(); in getDescendantCoordRelativeToAncestor()
179 sPoint[1] += v.getTop(); in getDescendantCoordRelativeToAncestor()
185 coord[0] = Math.round(sPoint[0]); in getDescendantCoordRelativeToAncestor()
186 coord[1] = Math.round(sPoint[1]); in getDescendantCoordRelativeToAncestor()
[all …]