HomeSort by relevance Sort by last modified time
    Searched refs:scrollSize (Results 1 - 17 of 17) 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/frame/
PinchViewport.h 116 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
PinchViewport.cpp 340 int PinchViewport::scrollSize(ScrollbarOrientation orientation) const
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.h 106 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
RenderLayerScrollableArea.h 90 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
RenderListBox.cpp 656 int RenderListBox::scrollSize(ScrollbarOrientation orientation) const
    [all...]
RenderLayerScrollableArea.cpp 333 int RenderLayerScrollableArea::scrollSize(ScrollbarOrientation orientation) const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayerTest.cpp 130 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE { return 100; }
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.h 119 virtual int scrollSize(ScrollbarOrientation) const = 0;
ScrollView.cpp 243 int ScrollView::scrollSize(ScrollbarOrientation orientation) const
249 IntSize scrollSize = m_contentsSize - visibleContentRect().size();
250 scrollSize.clampNegativeToZero();
251 return orientation == HorizontalScrollbar ? scrollSize.width() : scrollSize.height();
    [all...]
ScrollView.h 50 virtual int scrollSize(ScrollbarOrientation) const OVERRIDE;
ScrollableArea.cpp 440 return scrollSize(orientation);
ScrollAnimatorNone.cpp 425 float scrollableSize = static_cast<float>(m_scrollableArea->scrollSize(orientation));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositedLayerMapping.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollAnimatorNoneTest.cpp 52 MOCK_CONST_METHOD1(scrollSize, int(ScrollbarOrientation));
117 EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000));
    [all...]
WebFrameTest.cpp     [all...]

Completed in 177 milliseconds