Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/gesture/
DGesturePointerEventListener.kt55 private val mSwipeStartThreshold = Rect() in <lambda>() constant
102 mSwipeStartThreshold[startThreshold, startThreshold, startThreshold] = startThreshold in <lambda>()
114 mSwipeStartThreshold.left = in <lambda>()
116 mSwipeStartThreshold.left, in <lambda>()
122 mSwipeStartThreshold.top = in <lambda>()
124 mSwipeStartThreshold.top, in <lambda>()
130 mSwipeStartThreshold.right = in <lambda>()
132 mSwipeStartThreshold.right, in <lambda>()
138 mSwipeStartThreshold.bottom = in <lambda>()
140 mSwipeStartThreshold.bottom, in <lambda>()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DSystemGesturesPointerEventListener.java74 private final Rect mSwipeStartThreshold = new Rect(); field in SystemGesturesPointerEventListener
112 mSwipeStartThreshold.set(startThreshold, startThreshold, startThreshold, in onConfigurationChanged()
127 mSwipeStartThreshold.left = Math.max(mSwipeStartThreshold.left, in onConfigurationChanged()
131 mSwipeStartThreshold.top = Math.max(mSwipeStartThreshold.top, in onConfigurationChanged()
135 mSwipeStartThreshold.right = Math.max(mSwipeStartThreshold.right, in onConfigurationChanged()
139 mSwipeStartThreshold.bottom = Math.max(mSwipeStartThreshold.bottom, in onConfigurationChanged()
144 if (DEBUG) Slog.d(TAG, "mSwipeStartThreshold=" + mSwipeStartThreshold in onConfigurationChanged()
387 if (fromY <= mSwipeStartThreshold.top in detectSwipe()
392 if (fromY >= screenHeight - mSwipeStartThreshold.bottom in detectSwipe()
397 if (fromX >= screenWidth - mSwipeStartThreshold.right in detectSwipe()
[all …]