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

  /external/webkit/Source/WebKit/mac/WebView/
WebDynamicScrollBarsView.mm 49 WebCore::ScrollbarMode hScroll;
116 if (flag && _private->hScroll == ScrollbarAlwaysOff)
117 _private->hScroll = ScrollbarAuto;
118 else if (!flag && _private->hScroll != ScrollbarAlwaysOff)
119 _private->hScroll = ScrollbarAlwaysOff;
262 if (_private->hScroll != ScrollbarAuto)
263 newHasHorizontalScroller = (_private->hScroll == ScrollbarAlwaysOn);
267 if (!documentView || _private->suppressLayout || _private->suppressScrollers || (_private->hScroll != ScrollbarAuto && _private->vScroll != ScrollbarAuto)) {
304 if (_private->hScroll == ScrollbarAuto) {
320 if (!newHasVerticalScroller && hasVerticalScroller && _private->hScroll != ScrollbarAlwaysOn
    [all...]
  /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));
  /external/webkit/Source/WebCore/platform/
ScrollView.cpp 525 ScrollbarMode hScroll = m_horizontalScrollbarMode;
528 if (hScroll != ScrollbarAuto)
529 newHasHorizontalScrollbar = (hScroll == ScrollbarAlwaysOn);
533 if (m_scrollbarsSuppressed || (hScroll != ScrollbarAuto && vScroll != ScrollbarAuto)) {
544 if (hScroll == ScrollbarAuto) {
559 if (!newHasVerticalScrollbar && hasVerticalScrollbar && hScroll != ScrollbarAlwaysOn)
    [all...]
  /frameworks/base/include/androidfw/
KeycodeLabels.h 282 { "HSCROLL", 10 },
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
actionscript.php 93 'HOME', 'hscroll', 'html', 'htmlText', 'ID3', 'ifFrameLoaded', 'ignoreWhite', 'implements',
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 697 final float hscroll; local
699 hscroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL);
701 hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL);
703 if (hscroll != 0) {
704 final int delta = (int) (hscroll * getHorizontalScrollFactor());
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
HorizontalScrollView.java 682 final float hscroll; local
684 hscroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL);
686 hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL);
688 if (hscroll != 0) {
689 final int delta = (int) (hscroll * getHorizontalScrollFactor());
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 1380 final float hscroll; local
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
PagedView.java 1623 final float hscroll; local
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java 813 final float hscroll = event local
815 if (hscroll != 0) {
816 final int delta = (int) (hscroll * getHorizontalScrollFactor());
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 498 .append(" HScroll=").append(coords.getAxisValue(MotionEvent.AXIS_HSCROLL), 1)
    [all...]
  /frameworks/base/services/input/
InputReader.cpp 2447 float hscroll = mCursorScrollAccumulator.getRelativeHWheel(); local
5528 float hscroll = mCurrentRawHScroll; local
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java 6483 final float hscroll; local
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebview.cpp     [all...]

Completed in 851 milliseconds