Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DTaskStackViewTouchHandler.java422 float vScroll = ev.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent() local
423 if (vScroll > 0) { in onGenericMotionEvent()
/frameworks/base/core/java/com/android/internal/widget/
DRecyclerView.java2909 final float vScroll, hScroll; in onGenericMotionEvent() local
2913 vScroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent()
2915 vScroll = 0f; in onGenericMotionEvent()
2923 if (vScroll != 0 || hScroll != 0) { in onGenericMotionEvent()
2926 (int) (vScroll * scrollFactor), event); in onGenericMotionEvent()
9539 int vScroll = 0, hScroll = 0; in performAccessibilityAction() local
9543 vScroll = -(getHeight() - getPaddingTop() - getPaddingBottom()); in performAccessibilityAction()
9551 vScroll = getHeight() - getPaddingTop() - getPaddingBottom(); in performAccessibilityAction()
9558 if (vScroll == 0 && hScroll == 0) { in performAccessibilityAction()
9561 mRecyclerView.smoothScrollBy(hScroll, vScroll); in performAccessibilityAction()