Searched refs:scroll (Results 1 - 25 of 177) sorted by relevance

12345678

/external/chromium_org/ui/events/gestures/
H A Dfling_curve_unittest.cc17 gfx::Vector2dF scroll = local
19 EXPECT_EQ(0, scroll.x());
20 EXPECT_NEAR(scroll.y(), 96, 1);
22 scroll =
24 EXPECT_EQ(0, scroll.x());
25 EXPECT_NEAR(scroll.y(), 705, 1);
27 scroll =
29 EXPECT_EQ(0, scroll.x());
30 EXPECT_NEAR(scroll.y(), 392, 1);
H A Dfling_curve.cc72 gfx::Vector2dF scroll(displacement * displacement_ratio_.x(),
74 gfx::Vector2dF scroll_increment(scroll.x() - cumulative_scroll_.x(),
75 scroll.y() - cumulative_scroll_.y());
76 cumulative_scroll_ = scroll;
/external/chromium_org/third_party/skia/gm/rebaseline_server/static/
H A Dutils.js4 $(window).scroll( function() {
/external/droiddriver/src/com/google/android/droiddriver/scroll/
H A DScrollStepStrategy.java16 package com.google.android.droiddriver.scroll;
21 import com.google.android.droiddriver.scroll.Direction.DirectionConverter;
22 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
29 * Tries to scroll {@code containerFinder} in {@code direction}. Returns
33 * @param containerFinder Finder for the container that can scroll, for
38 boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction); method in interface:ScrollStepStrategy
46 * Called only if this step is at the beginning of a series of scroll steps
50 * @param containerFinder Finder for the container that can scroll, for
60 * Called only if this step is at the end of a series of scroll steps with
64 * @param containerFinder Finder for the container that can scroll, fo
[all...]
H A DScrollers.java17 package com.google.android.droiddriver.scroll;
25 import com.google.android.droiddriver.scroll.Direction.Axis;
26 import com.google.android.droiddriver.scroll.Direction.DirectionConverter;
27 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
35 * scroll, waits until ProgressBar is gone.
39 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { method in class:Scrollers.ProgressBarScrollStepStrategy
40 if (super.scroll(driver, containerFinder, direction)) {
H A DForwardingScrollStepStrategy.java16 package com.google.android.droiddriver.scroll;
22 import com.google.android.droiddriver.scroll.Direction.DirectionConverter;
23 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
39 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { method in class:ForwardingScrollStepStrategy
40 return delegate().scroll(driver, containerFinder, direction);
H A DScroller.java16 package com.google.android.droiddriver.scroll;
22 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
33 * @param containerFinder Finder for the container that can scroll, for
47 * @param containerFinder Finder for the container that can scroll, for
H A DStaticSentinelStrategy.java16 package com.google.android.droiddriver.scroll;
24 import com.google.android.droiddriver.scroll.Direction.DirectionConverter;
25 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
29 * in the logical scroll direction is fully visible. This assumes the count of
51 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { method in class:StaticSentinelStrategy
54 // If the last child in the logical scroll direction is fully visible, no
H A DStepBasedScroller.java16 package com.google.android.droiddriver.scroll;
18 import static com.google.android.droiddriver.scroll.Direction.LogicalDirection.BACKWARD;
29 import com.google.android.droiddriver.scroll.Direction.Axis;
30 import com.google.android.droiddriver.scroll.Direction.DirectionConverter;
31 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
37 * at a time and looks again, until we cannot scroll any more. A
52 * item after each scroll. 1000L is usually safe; if there are no
54 * @param axis the axis this scroller can scroll
94 if (i < maxScrolls && !scrollStepStrategy.scroll(driver, containerFinder, direction)) {
112 driver.on(containerFinder).scroll(directio
[all...]
H A DDirection.java16 package com.google.android.droiddriver.scroll;
18 import static com.google.android.droiddriver.scroll.Direction.PhysicalDirection.DOWN;
19 import static com.google.android.droiddriver.scroll.Direction.PhysicalDirection.LEFT;
20 import static com.google.android.droiddriver.scroll.Direction.PhysicalDirection.RIGHT;
21 import static com.google.android.droiddriver.scroll.Direction.PhysicalDirection.UP;
24 * A namespace to hold interfaces and constants for scroll directions.
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dpointer_overlay.css9 #touchpad-scroll-direction {
/external/droiddriver/src/com/google/android/droiddriver/actions/
H A DUiElementActor.java20 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
57 void scroll(UiElement uiElement, PhysicalDirection direction); method in interface:UiElementActor
H A DEventUiElementActor.java20 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
50 public void scroll(UiElement uiElement, PhysicalDirection direction) { method in class:EventUiElementActor
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DSchedGui.py42 self.scroll = wx.ScrolledWindow(self.panel)
43 self.scroll.SetScrollbars(self.scroll_scale, self.scroll_scale, self.width_virtual / self.scroll_scale, self.height_virtual / self.scroll_scale)
44 self.scroll.EnableScrolling(True, True)
45 self.scroll.SetFocus()
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
52 self.scroll.Bind(wx.EVT_PAINT, self.on_paint)
53 self.scroll.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
54 self.scroll.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down)
56 self.scroll.Fit()
72 (x, y) = self.scroll
[all...]
/external/droiddriver/src/com/google/android/droiddriver/actions/accessibility/
H A DAccessibilityUiElementActor.java22 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
51 public void scroll(UiElement uiElement, PhysicalDirection direction) { method in class:AccessibilityUiElementActor
/external/chromium_org/third_party/polymer/components-chromium/core-header-panel/
H A Dcore-header-panel-extracted.js7 * the scrollable element which you can use to access scroll info such as
10 * @event scroll
17 * `waterfall-medium-tall`, `scroll` and `cover`.
33 * `scroll`: The header keeps its seam with the panel, and is pushed off screen.
82 this.async('scroll');
86 this.scroll();
100 return this.mode === 'scroll' ?
104 scroll: function() {
106 var noShadow = {'seamed': 1, 'cover': 1, 'scroll': 1};
127 this.fire('scroll', {targe
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRuleListController.java55 private final JScrollPane scroll = new JScrollPane( list, field in class:RuleListController
68 return scroll;
89 scroll.setViewportBorder(BorderFactory.createEtchedBorder());
90 scroll.setBorder(BorderFactory.createTitledBorder(
92 scroll.setOpaque(false);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp113 bool scroll = true; local
117 scroll = false;
122 if (scroll)
/external/chromium_org/content/child/
H A Dtouch_fling_gesture_curve.cc141 // Keep track of integer portion of scroll thus far, and prepare increment.
142 WebFloatSize scroll(displacement * displacement_ratio_.x,
144 WebFloatSize scroll_increment(scroll.width - cumulative_scroll_.width,
145 scroll.height - cumulative_scroll_.height);
148 cumulative_scroll_ = scroll;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebPluginScrollbar.h65 virtual void scroll(ScrollDirection, ScrollGranularity, float multiplier) = 0;
/external/chromium-trace/trace-viewer/src/cc/
H A Dlayer_tree_quad_stack_viewer.css22 overflow: scroll;
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTRegion.idl41 [RaisesException=Setter] attribute DOMString scroll;
/external/chromium_org/ui/app_list/
H A Dpagination_controller.cc16 // Constants for dealing with scroll events.
32 // If the view scrolls horizontally, both horizontal and vertical scroll
37 // If the view scrolls vertically, only vertical scroll events are valid.
60 float scroll = scroll_axis_ == SCROLL_AXIS_HORIZONTAL local
65 // scroll > 0 means moving contents right or down. That is, transitioning
67 pagination_model_->UpdateScroll(scroll / width);
/external/droiddriver/src/com/google/android/droiddriver/
H A DUiElement.java26 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
178 void scroll(PhysicalDirection direction); method in interface:UiElement
/external/droiddriver/src/com/google/android/droiddriver/helpers/
H A DScrollerHelper.java23 import com.google.android.droiddriver.scroll.Direction.PhysicalDirection;
24 import com.google.android.droiddriver.scroll.Scroller;

Completed in 562 milliseconds

12345678