/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/core/frame/ |
D | PinchViewport.h | 116 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE; in scrollSize() function
|
D | PinchViewport.cpp | 340 int PinchViewport::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::PinchViewport
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
D | ScrollView.cpp | 243 int ScrollView::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::ScrollView 249 IntSize scrollSize = m_contentsSize - visibleContentRect().size(); in scrollSize() local 250 scrollSize.clampNegativeToZero(); in scrollSize() 251 return orientation == HorizontalScrollbar ? scrollSize.width() : scrollSize.height(); in scrollSize()
|
D | ScrollableArea.h | 119 virtual int scrollSize(ScrollbarOrientation) const = 0;
|
D | ScrollableArea.cpp | 440 return scrollSize(orientation); in documentStep()
|
D | ScrollView.h | 50 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
|
D | ScrollAnimatorNone.cpp | 425 float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation)); in scroll()
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | GraphicsLayerTest.cpp | 130 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE { return 100; } in scrollSize() function in __anonca1f38b00111::FakeScrollableArea
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderListBox.h | 106 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
|
D | RenderLayerScrollableArea.h | 90 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
|
D | RenderListBox.cpp | 656 int RenderListBox::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::RenderListBox
|
D | RenderLayerScrollableArea.cpp | 333 int RenderLayerScrollableArea::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::RenderLayerScrollableArea
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/ |
D | CompositedLayerMapping.cpp | 849 IntSize scrollSize(renderBox->scrollWidth(), renderBox->scrollHeight()); in updateScrollingLayerGeometry() local 850 if (scrollSize != m_scrollingContentsLayer->size() || clientBoxOffsetChanged) in updateScrollingLayerGeometry() 854 …if (scrollingContentsOffset != m_scrollingContentsLayer->offsetFromRenderer() || scrollSize != m_s… in updateScrollingLayerGeometry() 859 m_scrollingContentsLayer->setSize(scrollSize); in updateScrollingLayerGeometry()
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | ScrollAnimatorNoneTest.cpp | 52 MOCK_CONST_METHOD1(scrollSize, int(ScrollbarOrientation)); 117 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000)); in TEST()
|
D | WebFrameTest.cpp | 2207 …EXPECT_EQ(view->scrollSize(WebCore::HorizontalScrollbar), view->contentsSize().width() - view->vis… in TEST_F() 2208 …EXPECT_EQ(view->scrollSize(WebCore::VerticalScrollbar), view->contentsSize().height() - view->visi… in TEST_F() 2212 …EXPECT_EQ(view->scrollSize(WebCore::HorizontalScrollbar), view->contentsSize().width() - view->vis… in TEST_F() 2213 …EXPECT_EQ(view->scrollSize(WebCore::VerticalScrollbar), view->contentsSize().height() - view->visi… in TEST_F()
|