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.java82 private static final float[] sPoint = new float[2]; field in Utilities
166 sPoint[0] = coord[0]; in getDescendantCoordRelativeToAncestor()
167 sPoint[1] = coord[1]; in getDescendantCoordRelativeToAncestor()
175 sPoint[0] -= v.getScrollX(); in getDescendantCoordRelativeToAncestor()
176 sPoint[1] -= v.getScrollY(); in getDescendantCoordRelativeToAncestor()
179 v.getMatrix().mapPoints(sPoint); in getDescendantCoordRelativeToAncestor()
180 sPoint[0] += v.getLeft(); in getDescendantCoordRelativeToAncestor()
181 sPoint[1] += v.getTop(); in getDescendantCoordRelativeToAncestor()
187 coord[0] = Math.round(sPoint[0]); in getDescendantCoordRelativeToAncestor()
188 coord[1] = Math.round(sPoint[1]); in getDescendantCoordRelativeToAncestor()
[all …]