HomeSort by relevance Sort by last modified time
    Searched refs:scrollSize (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/WebKit/Source/web/
ScrollbarGroup.h 52 virtual int scrollSize(WebCore::ScrollbarOrientation) const OVERRIDE;
ScrollbarGroup.cpp 94 int ScrollbarGroup::scrollSize(WebCore::ScrollbarOrientation orientation) const
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollableArea.h 108 virtual int scrollSize(ScrollbarOrientation) const = 0;
ScrollView.cpp 282 int ScrollView::scrollSize(ScrollbarOrientation orientation) const
288 IntSize scrollSize = m_contentsSize - visibleContentRect().size();
289 scrollSize.clampNegativeToZero();
290 return orientation == HorizontalScrollbar ? scrollSize.width() : scrollSize.height();
    [all...]
ScrollView.h 48 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
ScrollableArea.cpp 412 return scrollSize(orientation);
ScrollAnimatorNone.cpp 427 float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.h 105 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
RenderLayerBacking.cpp 704 IntSize scrollSize(m_owningLayer->scrollWidth(), m_owningLayer->scrollHeight());
705 if (scrollSize != m_scrollingContentsLayer->size() || clientBoxOffsetChanged)
709 if (scrollingContentsOffset != m_scrollingContentsLayer->offsetFromRenderer() || scrollSize != m_scrollingContentsLayer->size()) {
718 m_scrollingContentsLayer->setSize(scrollSize);
    [all...]
RenderLayer.h     [all...]
RenderListBox.cpp 625 int RenderListBox::scrollSize(ScrollbarOrientation orientation) const
RenderLayer.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
GraphicsLayerTest.cpp 120 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE { return 100; }
ScrollAnimatorNoneTest.cpp 54 MOCK_CONST_METHOD1(scrollSize, int(ScrollbarOrientation));
120 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000));
    [all...]
WebFrameTest.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 302 webLayer->setMaxScrollPosition(IntSize(scrollableArea->scrollSize(HorizontalScrollbar), scrollableArea->scrollSize(VerticalScrollbar)));

Completed in 387 milliseconds