Home
last modified time | relevance | path

Searched refs:scrollSize (Results 1 – 17 of 17) 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/core/frame/
DPinchViewport.h116 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE; in scrollSize() function
DPinchViewport.cpp340 int PinchViewport::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::PinchViewport
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollView.cpp243 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()
DScrollableArea.h119 virtual int scrollSize(ScrollbarOrientation) const = 0;
DScrollableArea.cpp440 return scrollSize(orientation); in documentStep()
DScrollView.h50 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
DScrollAnimatorNone.cpp425 float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation)); in scroll()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsLayerTest.cpp130 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE { return 100; } in scrollSize() function in __anonca1f38b00111::FakeScrollableArea
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderListBox.h106 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
DRenderLayerScrollableArea.h90 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
DRenderListBox.cpp656 int RenderListBox::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::RenderListBox
DRenderLayerScrollableArea.cpp333 int RenderLayerScrollableArea::scrollSize(ScrollbarOrientation orientation) const in scrollSize() function in WebCore::RenderLayerScrollableArea
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
DCompositedLayerMapping.cpp849 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/
DScrollAnimatorNoneTest.cpp52 MOCK_CONST_METHOD1(scrollSize, int(ScrollbarOrientation));
117 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000)); in TEST()
DWebFrameTest.cpp2207 …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()