Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/method/
DBaseMovementMethod.java97 final float vscroll; in onGenericMotionEvent() local
100 vscroll = 0; in onGenericMotionEvent()
103 vscroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent()
113 if (vscroll < 0) { in onGenericMotionEvent()
114 handled |= scrollUp(widget, text, (int)Math.ceil(-vscroll)); in onGenericMotionEvent()
115 } else if (vscroll > 0) { in onGenericMotionEvent()
116 handled |= scrollDown(widget, text, (int)Math.ceil(vscroll)); in onGenericMotionEvent()
/frameworks/base/core/java/android/widget/
DStackView.java588 final float vscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent() local
589 if (vscroll < 0) { in onGenericMotionEvent()
592 } else if (vscroll > 0) { in onGenericMotionEvent()
/frameworks/support/core-ui/java/android/support/v4/widget/
DNestedScrollView.java928 final float vscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent() local
929 if (vscroll != 0) { in onGenericMotionEvent()
930 final int delta = (int) (vscroll * getVerticalScrollFactorCompat()); in onGenericMotionEvent()
/frameworks/native/services/inputflinger/
DInputReader.cpp2819 float vscroll = mCursorScrollAccumulator.getRelativeVWheel(); in sync() local
2821 bool scrolled = vscroll != 0 || hscroll != 0; in sync()
2823 mWheelYVelocityControl.move(when, NULL, &vscroll); in sync()
2936 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_VSCROLL, vscroll); in sync()
6395 float vscroll = mCurrentRawState.rawVScroll; in dispatchPointerSimple() local
6397 mWheelYVelocityControl.move(when, NULL, &vscroll); in dispatchPointerSimple()
6403 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_VSCROLL, vscroll); in dispatchPointerSimple()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java1382 final float vscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent() local
1383 if (vscroll != 0) { in onGenericMotionEvent()
1384 final int delta = (int) (vscroll * getVerticalScrollFactor()); in onGenericMotionEvent()