Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DScreenshotSelectorView.java36 private Rect mSelectionRect; field in ScreenshotSelectorView
53 mSelectionRect = new Rect(x, y, x, y); in startSelection()
57 if (mSelectionRect != null) { in updateSelection()
58 mSelectionRect.left = Math.min(mStartPoint.x, x); in updateSelection()
59 mSelectionRect.right = Math.max(mStartPoint.x, x); in updateSelection()
60 mSelectionRect.top = Math.min(mStartPoint.y, y); in updateSelection()
61 mSelectionRect.bottom = Math.max(mStartPoint.y, y); in updateSelection()
67 return mSelectionRect; in getSelectionRect()
72 mSelectionRect = null; in stopSelection()
78 if (mSelectionRect != null) { in draw()
[all …]