Searched refs:scrollSize (Results 1 - 16 of 16) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollAnimator.cpp65 float newPos = std::max(std::min(*currentPos + (step * multiplier), static_cast<float>(m_scrollableArea->scrollSize(orientation))), 0.0f);
H A DScrollableArea.h106 virtual int scrollSize(ScrollbarOrientation) const = 0;
H A DScrollView.cpp343 int ScrollView::scrollSize(ScrollbarOrientation orientation) const function in class:WebCore::ScrollView
347 IntSize scrollSize = m_contentsSize - visibleContentRect().size(); local
348 scrollSize.clampNegativeToZero();
349 return orientation == HorizontalScrollbar ? scrollSize.width() : scrollSize.height();
H A DScrollView.h52 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
H A DScrollAnimatorNone.cpp454 float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation));
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DPopupMenuWin.h94 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
H A DPopupMenuWin.cpp690 int PopupMenuWin::scrollSize(ScrollbarOrientation orientation) const function in class:WebCore::PopupMenuWin
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebScrollBar.h114 virtual int scrollSize(WebCore::ScrollbarOrientation) const;
H A DWebScrollBar.cpp256 int WebScrollBar::scrollSize(ScrollbarOrientation orientation) const function in class:WebScrollBar
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderListBox.h105 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
H A DRenderLayerBacking.cpp822 IntSize scrollSize(m_owningLayer->scrollWidth(), m_owningLayer->scrollHeight());
823 if (scrollSize != m_scrollingContentsLayer->size() || paddingBoxOffsetChanged)
827 if (scrollingContentsOffset != m_scrollingContentsLayer->offsetFromRenderer() || scrollSize != m_scrollingContentsLayer->size())
830 m_scrollingContentsLayer->setSize(scrollSize);
H A DRenderListBox.cpp628 int RenderListBox::scrollSize(ScrollbarOrientation orientation) const function in class:WebCore::RenderListBox
H A DRenderLayer.h1027 virtual int scrollSize(ScrollbarOrientation) const;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/PDF/
H A DSimplePDFPlugin.h156 virtual int scrollSize(WebCore::ScrollbarOrientation) const OVERRIDE;
H A DSimplePDFPlugin.mm856 int SimplePDFPlugin::scrollSize(ScrollbarOrientation orientation) const
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DScrollAnimatorMac.mm686 float newPos = std::max<float>(std::min<float>(currentPos + (step * multiplier), static_cast<float>(m_scrollableArea->scrollSize(orientation))), 0);

Completed in 322 milliseconds