Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/web/
DScrollbarGroup.h52 virtual int scrollSize(WebCore::ScrollbarOrientation) const OVERRIDE;
DScrollbarGroup.cpp94 int ScrollbarGroup::scrollSize(WebCore::ScrollbarOrientation orientation) const in scrollSize() function in blink::ScrollbarGroup
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollView.cpp250 int ScrollView::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::ScrollView
256 IntSize scrollSize = m_contentsSize - visibleContentRect().size(); in scrollSize() local
257 scrollSize.clampNegativeToZero(); in scrollSize()
258 return orientation == HorizontalScrollbar ? scrollSize.width() : scrollSize.height(); in scrollSize()
DScrollableArea.h105 virtual int scrollSize(ScrollbarOrientation) const = 0;
DScrollableArea.cpp401 return scrollSize(orientation); in documentStep()
DScrollView.h49 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
DScrollAnimatorNone.cpp424 float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation)); in scroll()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DGraphicsLayerTest.cpp123 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE { return 100; } in scrollSize() function in __anon759da6710111::FakeScrollableArea
DScrollAnimatorNoneTest.cpp53 MOCK_CONST_METHOD1(scrollSize, int(ScrollbarOrientation));
120 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000)); in TEST()
DWebFrameTest.cpp2050 …EXPECT_EQ(view->scrollSize(WebCore::HorizontalScrollbar), view->contentsSize().width() - view->vis… in TEST_F()
2051 …EXPECT_EQ(view->scrollSize(WebCore::VerticalScrollbar), view->contentsSize().height() - view->visi… in TEST_F()
2055 …EXPECT_EQ(view->scrollSize(WebCore::HorizontalScrollbar), view->contentsSize().width() - view->vis… in TEST_F()
2056 …EXPECT_EQ(view->scrollSize(WebCore::VerticalScrollbar), view->contentsSize().height() - view->visi… in TEST_F()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderListBox.h105 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
DRenderLayerScrollableArea.h95 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
DCompositedLayerMapping.cpp781 IntSize scrollSize(renderBox->scrollWidth(), renderBox->scrollHeight()); in updateGraphicsLayerGeometry() local
782 if (scrollSize != m_scrollingContentsLayer->size() || clientBoxOffsetChanged) in updateGraphicsLayerGeometry()
786 …if (scrollingContentsOffset != m_scrollingContentsLayer->offsetFromRenderer() || scrollSize != m_s… in updateGraphicsLayerGeometry()
795 m_scrollingContentsLayer->setSize(scrollSize); in updateGraphicsLayerGeometry()
DRenderListBox.cpp630 int RenderListBox::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::RenderListBox
DRenderLayerScrollableArea.cpp313 int RenderLayerScrollableArea::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::RenderLayerScrollableArea
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
DScrollingCoordinator.cpp345 …->setMaxScrollPosition(IntSize(scrollableArea->scrollSize(HorizontalScrollbar), scrollableArea->sc… in scrollableAreaScrollLayerDidChange()