Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DScreenshotSelectorView.java39 private Rect mSelectionRect; field in ScreenshotSelectorView
81 if (mSelectionRect != null) { in draw()
82 canvas.drawRect(mSelectionRect, mPaintSelection); in draw()
98 mSelectionRect = new Rect(x, y, x, y); in startSelection()
102 if (mSelectionRect != null) { in updateSelection()
103 mSelectionRect.left = Math.min(mStartPoint.x, x); in updateSelection()
104 mSelectionRect.right = Math.max(mStartPoint.x, x); in updateSelection()
105 mSelectionRect.top = Math.min(mStartPoint.y, y); in updateSelection()
106 mSelectionRect.bottom = Math.max(mStartPoint.y, y); in updateSelection()
112 return mSelectionRect; in getSelectionRect()
[all …]
/aosp12/packages/apps/Calendar/src/com/android/calendar/
H A DDayView.java332 private final Rect mSelectionRect = new Rect(); field in DayView
2730 Rect selectionArea = mSelectionRect; in drawEvents()