Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DSystemGesturesPointerEventListener.java66 private final Rect mSwipeStartThreshold = new Rect(); field in SystemGesturesPointerEventListener
101 mSwipeStartThreshold.set(defaultThreshold, defaultThreshold, defaultThreshold, in onConfigurationChanged()
115 mSwipeStartThreshold.left = Math.max(mSwipeStartThreshold.left, in onConfigurationChanged()
119 mSwipeStartThreshold.top = Math.max(mSwipeStartThreshold.top, in onConfigurationChanged()
123 mSwipeStartThreshold.right = Math.max(mSwipeStartThreshold.right, in onConfigurationChanged()
127 mSwipeStartThreshold.bottom = Math.max(mSwipeStartThreshold.bottom, in onConfigurationChanged()
132 if (DEBUG) Slog.d(TAG, "mSwipeStartThreshold=" + mSwipeStartThreshold in onConfigurationChanged()
300 if (fromY <= mSwipeStartThreshold.top in detectSwipe()
305 if (fromY >= screenHeight - mSwipeStartThreshold.bottom in detectSwipe()
310 if (fromX >= screenWidth - mSwipeStartThreshold.right in detectSwipe()
[all …]