HomeSort by relevance Sort by last modified time
    Searched refs:VerticalScrollbar (Results 1 - 25 of 25) sorted by null

  /external/webkit/Source/WebCore/accessibility/
AccessibilityScrollbar.cpp 74 if (m_scrollbar->orientation() == VerticalScrollbar)
  /external/webkit/Source/WebCore/platform/gtk/
ScrollbarThemeGtk2.cpp 70 return scrollbar->orientation() == VerticalScrollbar ? theme->gtkVScrollbar() : theme->gtkHScrollbar();
119 if (scrollbar->orientation() == VerticalScrollbar) {
153 int buttonSize = (orientation == VerticalScrollbar) ? rect.height() : rect.width();
171 if (orientation == VerticalScrollbar) {
180 const char* detail = orientation == VerticalScrollbar ? "vscrollbar" : "hscrollbar";
203 if (orientation == VerticalScrollbar) {
ScrollbarThemeGtk3.cpp 115 scrollbar->orientation() == VerticalScrollbar ? GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL);
160 if (scrollbar->orientation() == VerticalScrollbar) {
ScrollbarThemeGtk.cpp 111 // VerticalScrollbar alternate button
130 // VerticalScrollbar
181 // VerticalScrollbar
275 if (scrollbar->orientation() == VerticalScrollbar)
  /external/webkit/Source/WebCore/platform/
ScrollTypes.h 117 enum ScrollbarOrientation { HorizontalScrollbar, VerticalScrollbar };
ScrollAnimator.cpp 87 Scrollbar* verticalScrollbar = m_scrollableArea->verticalScrollbar();
92 float deltaY = verticalScrollbar ? e.deltaY() : 0;
110 scroll(VerticalScrollbar, ScrollByPixel, verticalScrollbar->pixelStep(), -deltaY);
ScrollAnimatorWin.cpp 84 PerAxisData* data = (orientation == VerticalScrollbar) ? &m_verticalData : &m_horizontalData;
ScrollableArea.cpp 63 orientation = VerticalScrollbar;
64 scrollbar = verticalScrollbar();
135 Scrollbar* verticalScrollbar = this->verticalScrollbar();
141 if (!verticalScrollbar)
144 // If there is both a horizontalScrollbar and a verticalScrollbar,
147 boundsAndCorner.setWidth(boundsAndCorner.width() + verticalScrollbar->width());
152 if (verticalScrollbar) {
153 verticalScrollbar->offsetDidChange();
154 if (verticalScrollbar->isOverlayScrollbar()
    [all...]
ScrollbarThemeComposite.cpp 120 scrollbar->orientation() == VerticalScrollbar,
ScrollView.cpp 122 m_verticalScrollbar = createScrollbar(VerticalScrollbar);
245 int verticalScrollbarWidth = verticalScrollbar() && !verticalScrollbar()->isOverlayScrollbar()
246 && !includeScrollbars ? verticalScrollbar()->width() : 0;
431 if (scrollbar->orientation() == VerticalScrollbar)
671 int verticalScrollbarWidth = verticalScrollbar() ? verticalScrollbar()->width() : 0;
942 positionScrollbarLayer(layerForVerticalScrollbar(), verticalScrollbar());
    [all...]
  /external/webkit/Source/WebCore/platform/win/
ScrollbarThemeSafari.cpp 216 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? VScrollTrackPart : HScrollTrackPart, graphicsContext->platformContext(), trackRect, size, state);
232 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? ScrollUpArrowPart : ScrollLeftArrowPart, graphicsContext->platformContext(),
235 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? ScrollDownArrowPart : ScrollRightArrowPart, graphicsContext->platformContext(),
251 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? VScrollThumbPart : HScrollThumbPart, graphicsContext->platformContext(),
PopupMenuWin.cpp 138 m_scrollbar = client()->createScrollbar(this, VerticalScrollbar, SmallScrollbar);
669 return ((orientation == VerticalScrollbar) && m_scrollbar) ? (m_scrollbar->totalSize() - m_scrollbar->visibleSize()) : 0;
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromiumLinux.cpp 130 if (scrollbar->orientation() == VerticalScrollbar) {
142 if (scrollbar->orientation() == VerticalScrollbar) {
ScrollbarThemeChromium.cpp 105 if (scrollbar->orientation() != VerticalScrollbar)
ScrollbarThemeChromiumMac.mm 432 if (scrollbar->orientation() == VerticalScrollbar && tickmarks.size()) {
  /external/webkit/Source/WebKit/win/
WebScrollBar.cpp 206 *w = m_scrollBar->orientation() == VerticalScrollbar ? ScrollbarTheme::nativeTheme()->scrollbarThickness(m_scrollBar->controlSize()) : -1;
283 Scrollbar* WebScrollBar::verticalScrollbar() const
285 return m_scrollBar->orientation() == VerticalScrollbar ? m_scrollBar.get() : 0;
  /external/webkit/Source/WebCore/platform/haiku/
ScrollbarThemeHaiku.cpp 141 if (scrollbar->orientation() == VerticalScrollbar)
  /external/webkit/Source/WebKit/chromium/src/
WebScrollbarImpl.cpp 206 ASSERT(m_scrollbar->orientation() == VerticalScrollbar);
312 Scrollbar* WebScrollbarImpl::verticalScrollbar() const
314 return m_scrollbar->orientation() == VerticalScrollbar ? m_scrollbar.get() : 0;
AssertMatchingEnums.cpp 362 COMPILE_ASSERT_MATCHING_ENUM(WebScrollbar::Vertical, VerticalScrollbar);
  /external/webkit/Source/WebCore/platform/qt/
ScrollbarThemeQt.cpp 112 opt.orientation = (scrollbar->orientation() == VerticalScrollbar) ? Qt::Vertical : Qt::Horizontal;
  /external/webkit/Source/WebCore/rendering/
RenderListBox.cpp 596 return ((orientation == VerticalScrollbar) && m_vBar) ? (m_vBar->totalSize() - m_vBar->visibleSize()) : 0;
803 widget = RenderScrollbar::createCustomScrollbar(this, VerticalScrollbar, this);
805 widget = Scrollbar::createNativeScrollbar(this, VerticalScrollbar, theme()->scrollbarControlSizeForPart(ListboxPart));
RenderLayer.cpp 222 destroyScrollbar(VerticalScrollbar);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp 205 m_scrollbar = Scrollbar::createNativeScrollbar(this, VerticalScrollbar, SmallScrollbar);
458 return ((orientation == VerticalScrollbar) && m_scrollbar) ? (m_scrollbar->totalSize() - m_scrollbar->visibleSize()) : 0;
  /external/webkit/Source/WebKit/qt/Api/
qwebframe.cpp 274 WebCore::Scrollbar* QWebFramePrivate::verticalScrollBar() const
278 return frame->view()->verticalScrollbar();
418 && (view->horizontalScrollbar() || view->verticalScrollbar())) {
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp     [all...]

Completed in 1026 milliseconds