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

/external/chromium_org/third_party/WebKit/Source/web/
H A DScrollbarGroup.h49 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
H A DPopupListBox.h109 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
H A DScrollbarGroup.cpp92 int ScrollbarGroup::scrollSize(ScrollbarOrientation orientation) const function in class:blink::ScrollbarGroup
H A DPopupListBox.cpp1019 int PopupListBox::scrollSize(ScrollbarOrientation orientation) const function in class:blink::PopupListBox
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DPinchViewport.h117 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
H A DPinchViewport.cpp338 int PinchViewport::scrollSize(ScrollbarOrientation orientation) const function in class:blink::PinchViewport
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayerTest.cpp129 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE { return 100; }
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollView.cpp242 int ScrollView::scrollSize(ScrollbarOrientation orientation) const function in class:blink::ScrollView
248 IntSize scrollSize = m_contentsSize - visibleContentRect().size(); local
249 scrollSize.clampNegativeToZero();
250 return orientation == HorizontalScrollbar ? scrollSize.width() : scrollSize.height();
H A DScrollableArea.h131 virtual int scrollSize(ScrollbarOrientation) const = 0;
H A DScrollView.h49 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
H A DScrollableArea.cpp482 return scrollSize(orientation);
H A DScrollAnimatorNone.cpp423 float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerScrollableArea.h92 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
H A DRenderLayerScrollableArea.cpp338 int RenderLayerScrollableArea::scrollSize(ScrollbarOrientation orientation) const function in class:blink::RenderLayerScrollableArea
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositedLayerMapping.cpp909 IntSize scrollSize(renderBox->scrollWidth(), renderBox->scrollHeight());
910 if (scrollSize != m_scrollingContentsLayer->size() || clientBoxOffsetChanged)
914 if (scrollingContentsOffset != m_scrollingContentsLayer->offsetFromRenderer() || scrollSize != m_scrollingContentsLayer->size()) {
919 m_scrollingContentsLayer->setSize(scrollSize);
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DScrollAnimatorNoneTest.cpp52 MOCK_CONST_METHOD1(scrollSize, int(ScrollbarOrientation));
117 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000));
H A DWebFrameTest.cpp2079 EXPECT_EQ(view->scrollSize(HorizontalScrollbar), view->contentsSize().width() - view->visibleContentRect().width());
2080 EXPECT_EQ(view->scrollSize(VerticalScrollbar), view->contentsSize().height() - view->visibleContentRect().height());
2084 EXPECT_EQ(view->scrollSize(HorizontalScrollbar), view->contentsSize().width() - view->visibleContentRect().width());
2085 EXPECT_EQ(view->scrollSize(VerticalScrollbar), view->contentsSize().height() - view->visibleContentRect().height());

Completed in 634 milliseconds