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

12345

/external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
H A DWebPageGtk.cpp55 static inline void scroll(Page* page, ScrollDirection direction, ScrollGranularity granularity) function in namespace:WebKit
73 scroll(m_page.get(), keyboardEvent.shiftKey() ? ScrollUp : ScrollDown, ScrollByPage);
76 scroll(m_page.get(), ScrollLeft, ScrollByLine);
79 scroll(m_page.get(), ScrollRight, ScrollByLine);
82 scroll(m_page.get(), ScrollUp, ScrollByLine);
85 scroll(m_page.get(), ScrollDown, ScrollByLine);
88 scroll(m_page.get(), ScrollUp, ScrollByDocument);
91 scroll(m_page.get(), ScrollDown, ScrollByDocument);
94 scroll(m_page.get(), ScrollUp, ScrollByPage);
97 scroll(m_pag
[all...]
/external/webkit/Source/WebCore/platform/qt/
H A DScrollbarQt.cpp85 scrollableArea()->scroll(horizontal ? ScrollLeft : ScrollUp, ScrollByDocument);
87 scrollableArea()->scroll(horizontal ? ScrollRight : ScrollDown, ScrollByDocument);
89 scrollableArea()->scroll(horizontal ? ScrollLeft : ScrollUp, ScrollByPage);
91 scrollableArea()->scroll(horizontal ? ScrollRight : ScrollDown, ScrollByPage);
93 scrollableArea()->scroll(horizontal ? ScrollLeft : ScrollUp, ScrollByLine);
95 scrollableArea()->scroll(horizontal ? ScrollRight : ScrollDown, ScrollByLine);
H A DQWebPageClient.h50 virtual void scroll(int dx, int dy, const QRect&) = 0;
/external/linux-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/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);
H A DRunnerController.java69 private JScrollPane scroll = new JScrollPane(tree, field in class:RunnerController.RunnerView
76 scroll.setBorder(BorderFactory.createLineBorder(Color.LIGHT_GRAY));
77 scroll.setOpaque(false);
79 this.add(scroll);
H A DTestCaseEditController.java47 private JScrollPane scroll; field in class:TestCaseEditController
149 scroll = new JScrollPane(listCases);
150 scroll.setBorder(BorderFactory.createTitledBorder(
152 scroll.setOpaque(false);
153 scroll.setViewportBorder(BorderFactory.createEtchedBorder());
202 view.add(scroll, BorderLayout.CENTER);
427 private JScrollPane scroll = new JScrollPane(textArea, field in class:TestCaseEditController.InputMultiEditor
433 scroll.setBorder(BorderFactory.createLineBorder(Color.LIGHT_GRAY));
451 return scroll;
505 private JScrollPane scroll field in class:TestCaseEditController.OutputAstEditor
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp113 bool scroll = true; local
117 scroll = false;
122 if (scroll)
/external/webkit/Source/WebCore/platform/
H A DScrollAnimatorWin.h46 virtual bool scroll(ScrollbarOrientation, ScrollGranularity, float step, float multiplier);
H A DScrollAnimator.cpp62 bool ScrollAnimator::scroll(ScrollbarOrientation orientation, ScrollGranularity, float step, float multiplier) function in class:WebCore::ScrollAnimator
90 // scroll any further.
110 scroll(VerticalScrollbar, ScrollByPixel, verticalScrollbar->pixelStep(), -deltaY);
112 scroll(HorizontalScrollbar, ScrollByPixel, horizontalScrollbar->pixelStep(), -deltaX);
H A DHostWindow.h47 // Requests the host scroll backingstore by the specified delta, rect to scroll, and clip rect.
48 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) = 0;
H A DScrollAnimator.h54 // Computes a scroll destination for the given parameters. Returns false if
58 virtual bool scroll(ScrollbarOrientation, ScrollGranularity, float step, float multiplier);
/external/webkit/Source/WebKit/chromium/public/
H A DWebScrollbar.h87 virtual void scroll(ScrollDirection, ScrollGranularity, float multiplier) = 0;
/external/webkit/Source/WebKit/chromium/src/
H A DDragScrollTimer.h44 // scroll-on-drag behaviour.
56 void scroll();
H A DDragScrollTimer.cpp75 void DragScrollTimer::scroll() function in class:WebKit::DragScrollTimer
84 scroll();
H A DWebScrollbarImpl.cpp108 void WebScrollbarImpl::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier) function in class:WebKit::WebScrollbarImpl
117 WebCore::ScrollableArea::scroll(dir, static_cast<WebCore::ScrollGranularity>(granularity), multiplier);
212 ScrollableArea::scroll((m_scrollbar->orientation() == HorizontalScrollbar) ? WebCore::ScrollLeft : WebCore::ScrollUp, WebCore::ScrollByPixel, delta);
250 // Will return false if scroll direction wasn't compatible with this scrollbar.
251 return ScrollableArea::scroll(scrollDirection, scrollGranularity);
H A DWebScrollbarImpl.h56 virtual void scroll(ScrollDirection, ScrollGranularity, float multiplier);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DChunkedUpdateDrawingArea.h43 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DDrawingArea.h61 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
H A DDrawingAreaImpl.h51 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DTiledDrawingArea.h46 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollDelta);
/external/webkit/Source/WebKit2/UIProcess/win/
H A DBackingStoreWin.cpp83 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
100 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) function in class:WebKit::BackingStore
/external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
H A DWebPageQt.cpp212 static inline void scroll(Page* page, ScrollDirection direction, ScrollGranularity granularity) function in namespace:WebKit
238 scroll(m_page.get(), ScrollLeft, ScrollByLine);
241 scroll(m_page.get(), ScrollRight, ScrollByLine);
244 scroll(m_page.get(), ScrollUp, ScrollByLine);
247 scroll(m_page.get(), ScrollDown, ScrollByLine);
/external/webkit/Source/WebKit2/UIProcess/
H A DBackingStore.h71 void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DBackingStoreMac.mm100 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
116 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)

Completed in 565 milliseconds

12345