HomeSort by relevance Sort by last modified time
    Searched defs:hscroll (Results 1 - 7 of 7) sorted by null

  /external/toybox/kconfig/lxdialog/
textbox.c 30 static int hscroll; variable
62 hscroll = 0;
228 if (hscroll <= 0)
232 hscroll = 0;
234 hscroll--;
243 if (hscroll >= MAX_LEN)
245 hscroll++;
327 line += MIN(strlen(line), hscroll); /* Scroll horizontally */
  /packages/apps/Camera2/src/com/android/camera/ui/
FilmstripGestureRecognizer.java 38 boolean onMouseScroll(float hscroll, float vscroll);
74 final float hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL); local
77 if (hscroll != 0.0f || vscroll != 0.0f) {
78 mListener.onMouseScroll(hscroll, vscroll);
  /frameworks/base/core/java/android/text/method/
BaseMovementMethod.java 98 final float hscroll; local
101 hscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL);
104 hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL);
108 if (hscroll < 0) {
109 handled |= scrollLeft(widget, text, (int)Math.ceil(-hscroll));
110 } else if (hscroll > 0) {
111 handled |= scrollRight(widget, text, (int)Math.ceil(hscroll));
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 726 final float hscroll; local
728 hscroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL);
730 hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL);
732 if (hscroll != 0) {
733 final int delta = (int) (hscroll * getHorizontalScrollFactor());
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 1380 final float hscroll; local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 1847 final float hscroll; local
    [all...]
  /frameworks/native/services/inputflinger/
InputReader.cpp 2629 float hscroll = mCursorScrollAccumulator.getRelativeHWheel(); local
6175 float hscroll = mCurrentRawState.rawHScroll; local
    [all...]

Completed in 352 milliseconds