/external/chromium_org/third_party/WebKit/Source/web/ |
D | ScrollbarGroup.h | 52 virtual int scrollSize(WebCore::ScrollbarOrientation) const OVERRIDE;
|
D | ScrollbarGroup.cpp | 94 int ScrollbarGroup::scrollSize(WebCore::ScrollbarOrientation orientation) const in scrollSize() function in blink::ScrollbarGroup
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
D | ScrollView.cpp | 250 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()
|
D | ScrollableArea.h | 105 virtual int scrollSize(ScrollbarOrientation) const = 0;
|
D | ScrollableArea.cpp | 401 return scrollSize(orientation); in documentStep()
|
D | ScrollView.h | 49 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
|
D | ScrollAnimatorNone.cpp | 424 float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation)); in scroll()
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | GraphicsLayerTest.cpp | 123 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE { return 100; } in scrollSize() function in __anon759da6710111::FakeScrollableArea
|
D | ScrollAnimatorNoneTest.cpp | 53 MOCK_CONST_METHOD1(scrollSize, int(ScrollbarOrientation)); 120 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000)); in TEST()
|
D | WebFrameTest.cpp | 2050 …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/ |
D | RenderListBox.h | 105 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
|
D | RenderLayerScrollableArea.h | 95 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
|
D | CompositedLayerMapping.cpp | 781 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()
|
D | RenderListBox.cpp | 630 int RenderListBox::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::RenderListBox
|
D | RenderLayerScrollableArea.cpp | 313 int RenderLayerScrollableArea::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::RenderLayerScrollableArea
|
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
D | ScrollingCoordinator.cpp | 345 …->setMaxScrollPosition(IntSize(scrollableArea->scrollSize(HorizontalScrollbar), scrollableArea->sc… in scrollableAreaScrollLayerDidChange()
|