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

12345678910

/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tk/
H A Dscrollbox.rb15 #scroll = Tk::Scrollbar.new(@frame)
17 scroll = TkScrollbar.new(@frame)
21 list.configure 'yscroll', scroll.path+" set"
23 scroll.configure 'command', list.path+" yview"
24 scroll.pack 'side'=>'right','fill'=>'y'
26 list.yscrollbar(scroll)
28 scroll.pack('side'=>'right','fill'=>'y')
32 delegate('background', list, scroll)
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/gtk/
H A DWebPageGtk.cpp78 static inline void scroll(Page* page, ScrollDirection direction, ScrollGranularity granularity) function in namespace:WebKit
96 scroll(m_page.get(), keyboardEvent.shiftKey() ? ScrollUp : ScrollDown, ScrollByPage);
99 scroll(m_page.get(), ScrollLeft, ScrollByLine);
102 scroll(m_page.get(), ScrollRight, ScrollByLine);
105 scroll(m_page.get(), ScrollUp, ScrollByLine);
108 scroll(m_page.get(), ScrollDown, ScrollByLine);
111 scroll(m_page.get(), ScrollUp, ScrollByDocument);
114 scroll(m_page.get(), ScrollDown, ScrollByDocument);
117 scroll(m_page.get(), ScrollUp, ScrollByPage);
120 scroll(m_pag
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/cairo/
H A DWidgetBackingStoreCairo.h33 void scroll(const IntRect&, const IntSize&);
H A DWidgetBackingStore.h50 virtual void scroll(const IntRect& scrollRect, const IntSize& scrollOffset) = 0;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/efl/
H A DWebPageEfl.cpp78 static inline void scroll(Page* page, ScrollDirection direction, ScrollGranularity granularity) function in namespace:WebKit
96 scroll(m_page.get(), keyboardEvent.shiftKey() ? ScrollUp : ScrollDown, ScrollByPage);
99 scroll(m_page.get(), ScrollLeft, ScrollByLine);
102 scroll(m_page.get(), ScrollRight, ScrollByLine);
105 scroll(m_page.get(), ScrollUp, ScrollByLine);
108 scroll(m_page.get(), ScrollDown, ScrollByLine);
111 scroll(m_page.get(), ScrollUp, ScrollByDocument);
114 scroll(m_page.get(), ScrollDown, ScrollByDocument);
117 scroll(m_page.get(), ScrollUp, ScrollByPage);
120 scroll(m_pag
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/ttk/
H A Dutils.tcl329 bind TtkScrollable <ButtonPress-4> { %W yview scroll -5 units }
330 bind TtkScrollable <ButtonPress-5> { %W yview scroll 5 units }
331 bind TtkScrollable <Shift-ButtonPress-4> { %W xview scroll -5 units }
332 bind TtkScrollable <Shift-ButtonPress-5> { %W xview scroll 5 units }
336 { %W yview scroll [expr {-(%D/120)}] units }
338 { %W xview scroll [expr {-(%D/120)}] units }
342 { %W yview scroll [expr {-(%D)}] units }
344 { %W xview scroll [expr {-(%D)}] units }
346 { %W yview scroll [expr {-10*(%D)}] units }
348 { %W xview scroll [exp
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/track/
H A DTextTrackRegion.idl40 [SetterRaisesException] attribute DOMString scroll;
/macosx-10.9.5/emacs-92/emacs/src/
H A Dw32console.c85 the console with a large scroll-back buffer. */
176 SMALL_RECT scroll; local
183 scroll.Top = vpos - n;
184 scroll.Bottom = FRAME_LINES (f);
189 scroll.Top = vpos;
190 scroll.Bottom = FRAME_LINES (f) - n;
193 scroll.Left = 0;
194 scroll.Right = FRAME_COLS (f);
201 ScrollConsoleScreenBuffer (cur_screen, &scroll, NULL, dest, &fill);
203 /* Here we have to deal with a w32 console flake: If the scroll
249 SMALL_RECT scroll; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DGtkWidgetBackingStoreX11.h35 void scroll(const IntRect& scrollRect, const IntSize& scrollOffset);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DBackingStoreQt.cpp51 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
67 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) function in class:WebKit::BackingStore
72 m_pixmap.scroll(scrollOffset.width(), scrollOffset.height(), scrollRect);
/macosx-10.9.5/tcl-102/tk/tk/library/
H A Dlistbox.tcl87 %W xview scroll -1 units
90 %W xview scroll -1 pages
93 %W xview scroll 1 units
96 %W xview scroll 1 pages
99 %W yview scroll -1 pages
103 %W yview scroll 1 pages
107 %W xview scroll -1 pages
110 %W xview scroll 1 pages
184 %W yview scroll [expr {- (%D)}] units
187 %W yview scroll [exp
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/library/
H A Dlistbox.tcl87 %W xview scroll -1 units
90 %W xview scroll -1 pages
93 %W xview scroll 1 units
96 %W xview scroll 1 pages
99 %W yview scroll -1 pages
103 %W yview scroll 1 pages
107 %W xview scroll -1 pages
110 %W xview scroll 1 pages
183 %W yview scroll [expr {- (%D)}] units
186 %W yview scroll [exp
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/cairo/
H A DBackingStoreCairo.cpp81 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
95 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) function in class:WebKit::BackingStore
101 m_backingStore->scroll(scrollRect, scrollOffset);
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dbrowse17 scrollbar .scroll -command ".list yview"
18 pack .scroll -side right -fill y
19 listbox .list -yscroll ".scroll set" -relief sunken -width 20 -height 20 \
H A Dstates.tcl31 scrollbar $w.frame.scroll -command "$w.frame.list yview"
32 listbox $w.frame.list -yscroll "$w.frame.scroll set" -setgrid 1 -height 12
33 pack $w.frame.scroll -side right -fill y
H A Dcscroll.tcl65 %W yview scroll [expr {- (%D)}] units
68 %W yview scroll [expr {-10 * (%D)}] units
71 %W xview scroll [expr {- (%D)}] units
74 %W xview scroll [expr {-10 * (%D)}] units
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dbrowse15 scrollbar .scroll -command ".list yview"
16 pack .scroll -side right -fill y
17 listbox .list -yscroll ".scroll set" -relief sunken -width 20 -height 20 \
H A Dcscroll.tcl65 %W yview scroll [expr {- (%D)}] units
68 %W yview scroll [expr {-10 * (%D)}] units
71 %W xview scroll [expr {- (%D)}] units
74 %W xview scroll [expr {-10 * (%D)}] units
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/mac/
H A DRemoteLayerTreeDrawingArea.mm58 void RemoteLayerTreeDrawingArea::scroll(const IntRect& scrollRect, const IntSize& scrollDelta)
H A DRemoteLayerTreeDrawingArea.h47 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollDelta) OVERRIDE;
/macosx-10.9.5/tcl-102/tcl_ext/tclsoap/tclsoap/samples/
H A DAsync.tcl37 set scroll [scrollbar ${mainFrame}.s -command "$viewer yview"]
38 pack $scroll -side right -fill y
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollAnimator.cpp62 bool ScrollAnimator::scroll(ScrollbarOrientation orientation, ScrollGranularity, float step, float multiplier) function in class:WebCore::ScrollAnimator
90 // scroll any further.
112 scroll(VerticalScrollbar, granularity, verticalScrollbar->pixelStep(), -deltaY);
122 scroll(HorizontalScrollbar, granularity, 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;
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Dtkfrom.rb64 list = scroll = nil
68 scroll.set *idx
77 scroll = TkScrollbar.new(f) {
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/
H A DIOHIDPointingDevice.h48 static IOHIDPointingDevice * newPointingDeviceAndStart(IOService * owner, UInt8 numButtons = 8, UInt32 resolution = 100, bool scroll = false, UInt32 location = 0);

Completed in 166 milliseconds

12345678910