Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/views/
DBaseDragLayer.java95 protected final float[] mTmpRectPoints = new float[4]; field in BaseDragLayer
338 mTmpRectPoints[0] = 0; in getDescendantRectRelativeToSelf()
339 mTmpRectPoints[1] = 0; in getDescendantRectRelativeToSelf()
340 mTmpRectPoints[2] = descendant.getWidth(); in getDescendantRectRelativeToSelf()
341 mTmpRectPoints[3] = descendant.getHeight(); in getDescendantRectRelativeToSelf()
342 float s = getDescendantCoordRelativeToSelf(descendant, mTmpRectPoints); in getDescendantRectRelativeToSelf()
343 r.left = Math.round(Math.min(mTmpRectPoints[0], mTmpRectPoints[2])); in getDescendantRectRelativeToSelf()
344 r.top = Math.round(Math.min(mTmpRectPoints[1], mTmpRectPoints[3])); in getDescendantRectRelativeToSelf()
345 r.right = Math.round(Math.max(mTmpRectPoints[0], mTmpRectPoints[2])); in getDescendantRectRelativeToSelf()
346 r.bottom = Math.round(Math.max(mTmpRectPoints[1], mTmpRectPoints[3])); in getDescendantRectRelativeToSelf()