HomeSort by relevance Sort by last modified time
    Searched full:scrollbar (Results 101 - 125 of 451) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeMacCommon.mm 90 void ScrollbarThemeMacCommon::registerScrollbar(ScrollbarThemeClient* scrollbar)
92 scrollbarSet().add(scrollbar);
95 void ScrollbarThemeMacCommon::unregisterScrollbar(ScrollbarThemeClient* scrollbar)
97 scrollbarSet().remove(scrollbar);
100 void ScrollbarThemeMacCommon::paintGivenTickmarks(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& rect, const Vector<IntRect>& tickmarks)
102 if (scrollbar->orientation() != VerticalScrollbar)
118 const float percent = static_cast<float>(i->y()) / scrollbar->totalSize();
266 void ScrollbarThemeMacCommon::paintTickmarks(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& rect)
269 if (scrollbar->orientation() != VerticalScrollbar)
276 scrollbar->getTickmarks(tickmarks)
    [all...]
ScrollbarThemeOverlay.h 34 // This scrollbar theme is used to get overlay scrollbar for platforms other
  /external/chromium_org/content/child/
webthemeengine_impl_mac.cc 44 trackInfo.trackInfo.scrollbar.viewsize = scrollbarInfo.visibleSize;
53 trackInfo.trackInfo.scrollbar.pressState =
  /external/chromium_org/third_party/WebKit/ManualTests/
select_webkit_appearance_off_popup_alignment.html 8 No scrollbar in popup:<br>
28 Popup has scrollbar:<br>
stale-scrollbar-client-crash.html 14 Each scrollbar will disappear when clicked, along with the box containing it, but the browser will not crash as you continue to drag.
18 The scrollbar will disappear and Safari will crash as you continue dragging.
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 37 RenderScrollbarPart::RenderScrollbarPart(RenderScrollbar* scrollbar, ScrollbarPart part)
39 , m_scrollbar(scrollbar)
48 RenderScrollbarPart* RenderScrollbarPart::createAnonymous(Document* document, RenderScrollbar* scrollbar, ScrollbarPart part)
50 RenderScrollbarPart* renderer = new RenderScrollbarPart(scrollbar, part);
107 // Buttons and track pieces can all have margins along the axis of the scrollbar.
124 // Buttons and track pieces can all have margins along the axis of the scrollbar.
HitTestResult.h 47 class Scrollbar;
73 Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:blink::HitTestResult
102 void setScrollbar(Scrollbar*);
149 RefPtr<Scrollbar> m_scrollbar;
  /external/chromium_org/ui/views/controls/
scroll_view_unittest.cc 8 #include "ui/views/controls/scrollbar/overlay_scroll_bar.h"
69 // Size the contents such that vertical scrollbar is needed.
79 // Size the contents such that horizontal scrollbar is needed.
141 // Size the contents such that vertical scrollbar is needed.
157 // Size the contents such that horizontal scrollbar is needed.
207 // Scroll the horizontal scrollbar.
210 const_cast<ScrollBar*>(scroll_view.horizontal_scroll_bar()), 1);
214 // Scrolling the vertical scrollbar shouldn't effect the header.
217 const_cast<ScrollBar*>(scroll_view.vertical_scroll_bar()), 1);
292 // Use a scrollbar that is disabled by default, so the width of the content i
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.h 104 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE;
113 virtual Scrollbar* verticalScrollbar() const OVERRIDE { return m_verticalScrollbar.get(); }
245 Scrollbar* scrollbarAtWindowPoint(const IntPoint& windowPoint);
276 // Our suggested width, not including scrollbar.
288 // The scrollbar which has mouse capture. Mouse events go straight to this
290 RefPtr<Scrollbar> m_capturingScrollbar;
292 // The last scrollbar that the mouse was over. Used for mouseover highlights.
293 RefPtr<Scrollbar> m_lastScrollbarUnderMouse;
312 RefPtr<Scrollbar> m_verticalScrollbar;
PopupListBox.cpp 95 Scrollbar* scrollbar = scrollbarAtWindowPoint(event.position()); local
96 if (scrollbar) {
97 m_capturingScrollbar = scrollbar;
115 Scrollbar* scrollbar = scrollbarAtWindowPoint(event.position()); local
116 if (m_lastScrollbarUnderMouse != scrollbar) {
117 // Send mouse exited to the old scrollbar.
120 m_lastScrollbarUnderMouse = scrollbar;
123 if (scrollbar) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion12-expected-completion75.txt 21 android:scrollbarStyle : Controls the scrollbar style and position. [enum]
24 android:scrollbarFadeDuration : Defines the delay in milliseconds that a scrollbar takes to fade out. [integer]
25 android:scrollbarDefaultDelayBeforeFade : Defines the delay in milliseconds that a scrollbar waits before fade out. [integer]
27 android:scrollbarThumbHorizontal : Defines the horizontal scrollbar thumb drawable. [reference]
28 android:scrollbarThumbVertical : Defines the vertical scrollbar thumb drawable. [reference]
29 android:scrollbarTrackHorizontal : Defines the horizontal scrollbar track drawable. [reference]
30 android:scrollbarTrackVertical : Defines the vertical scrollbar track drawable. [reference]
31 android:scrollbarAlwaysDrawHorizontalTrack : Defines whether the horizontal scrollbar track should always be drawn. [boolean]
32 android:scrollbarAlwaysDrawVerticalTrack : Defines whether the vertical scrollbar track should always be drawn. [boolean]
  /external/chromium_org/chrome/browser/resources/ntp4/
tile_page.css 13 .tile-page-scrollbar {
33 * the scrollbar. */
36 /* Scrollbar width(13px) + balance right padding. */
187 .tile-page-content::-webkit-scrollbar {
191 .tile-page-content::-webkit-scrollbar-button {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ScrolledList.py 8 # Create top frame, with scrollbar and listbox
12 self.vbar = vbar = Scrollbar(frame, name="vbar")
19 # Tie listbox and scrollbar together
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ScrolledList.py 8 # Create top frame, with scrollbar and listbox
12 self.vbar = vbar = Scrollbar(frame, name="vbar")
19 # Tie listbox and scrollbar together
  /external/chromium_org/cc/layers/
painted_scrollbar_layer.cc 30 scoped_ptr<Scrollbar> scrollbar,
33 new PaintedScrollbarLayer(scrollbar.Pass(), scroll_layer_id));
36 PaintedScrollbarLayer::PaintedScrollbarLayer(scoped_ptr<Scrollbar> scrollbar,
38 : scrollbar_(scrollbar.Pass()),
scrollbar_layer_impl_base.cc 57 void RegisterScrollbarWithLayers(ScrollbarLayerImplBase* scrollbar,
64 DCHECK(scrollbar);
75 (current_layer->*operation)(scrollbar);
154 // horizontal scrollbar - inputs are above the scrollbar, computed values
208 // horizontal scrollbar down by the vertical_adjust_ factor and lay the
painted_scrollbar_layer_impl.h 9 #include "cc/input/scrollbar.h"
  /external/chromium_org/ui/native_theme/
native_theme_aura.cc 84 // We don't draw scrollbar buttons.
167 // Overlay Scrollbar should never paint a scrollbar track.
180 // Overlay scrollbar has no track, just paint thumb directly.
237 // Overlay Scrollbar should never paint a scrollbar corner.
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_thinning_unittest.cc 74 // Check initialization of scrollbar.
81 // Scroll content. Confirm the scrollbar gets dark and then becomes light
88 // Scrollbar doesn't change size if triggered by scroll.
124 // Initiate a scroll when the pointer is already near the scrollbar. It should
141 // Scrollbar should still be thick.
150 // Move the pointer near the scrollbar. Confirm it gets thick and narrow when
206 // Move the pointer over the scrollbar. Make sure it gets thick and dark
262 // First move the pointer near the scrollbar, then over it, then back near
  /external/chromium_org/cc/blink/
scrollbar_impl.cc 16 scoped_ptr<WebScrollbar> scrollbar,
19 : scrollbar_(scrollbar.Pass()),
web_compositor_support_impl.cc 77 WebScrollbar* scrollbar,
80 return new WebScrollbarLayerImpl(scrollbar, painter, geometry);
  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_view.css 92 #timeline-view-scrollbar-div {
97 #timeline-view-scrollbar-inner-div {
timeline_view.html 41 <div id=timeline-view-scrollbar-div>
42 <div id=timeline-view-scrollbar-inner-div>
  /external/chromium_org/ui/views/controls/scrollbar/
kennedy_scroll_bar.cc 5 #include "ui/views/controls/scrollbar/kennedy_scroll_bar.h"
12 #include "ui/views/controls/scrollbar/base_scroll_bar_thumb.h"
  /external/chromium_org/ui/views/
views.gyp 150 'controls/scrollbar/base_scroll_bar.cc',
151 'controls/scrollbar/base_scroll_bar.h',
152 'controls/scrollbar/base_scroll_bar_button.cc',
153 'controls/scrollbar/base_scroll_bar_button.h',
154 'controls/scrollbar/base_scroll_bar_thumb.cc',
155 'controls/scrollbar/base_scroll_bar_thumb.h',
156 'controls/scrollbar/kennedy_scroll_bar.cc',
157 'controls/scrollbar/kennedy_scroll_bar.h',
158 'controls/scrollbar/native_scroll_bar_views.cc',
159 'controls/scrollbar/native_scroll_bar_views.h'
    [all...]

Completed in 1786 milliseconds

1 2 3 45 6 7 8 91011>>