HomeSort by relevance Sort by last modified time
    Searched refs:setScrollOffset (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
ScrollbarGroup.h 53 virtual void setScrollOffset(const WebCore::IntPoint&) OVERRIDE;
WebPluginScrollbarImpl.h 48 void setScrollOffset(int);
ScrollbarGroup.cpp 103 void ScrollbarGroup::setScrollOffset(const IntPoint& offset)
106 m_horizontalScrollbar->setScrollOffset(offset.x());
108 m_verticalScrollbar->setScrollOffset(offset.y());
WebHistoryItem.cpp 115 void WebHistoryItem::setScrollOffset(const WebPoint& scrollOffset)
WebLocalFrameImpl.h 96 virtual void setScrollOffset(const WebSize&) OVERRIDE;
WebPluginScrollbarImpl.cpp 80 void WebPluginScrollbarImpl::setScrollOffset(int scrollOffset)
WebRemoteFrameImpl.h 43 virtual void setScrollOffset(const WebSize&) OVERRIDE;
WebRemoteFrameImpl.cpp 189 void WebRemoteFrameImpl::setScrollOffset(const WebSize&)
WebLocalFrameImpl.cpp 606 void WebLocalFrameImpl::setScrollOffset(const WebSize& offset)
609 view->setScrollOffset(IntPoint(offset.width, offset.height));
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebHistoryItem.h 90 BLINK_EXPORT void setScrollOffset(const WebPoint&);
WebFrame.h 170 virtual void setScrollOffset(const WebSize&) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.h 131 virtual void setScrollOffset(const IntPoint&) OVERRIDE;
PinchViewport.cpp 387 void PinchViewport::setScrollOffset(const IntPoint& offset)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.h 91 virtual void setScrollOffset(const IntPoint&) OVERRIDE;
189 void setScrollOffset(const IntSize& scrollOffset) { m_scrollOffset = scrollOffset; }
RenderListBox.h 108 virtual void setScrollOffset(const IntPoint&) OVERRIDE;
137 // NOTE: This should only be called by the overriden setScrollOffset from ScrollableArea.
RenderLayerScrollableArea.cpp 339 void RenderLayerScrollableArea::setScrollOffset(const IntPoint& newScrollOffset)
350 setScrollOffset(toIntSize(newScrollOffset));
    [all...]
RenderListBox.cpp 666 void RenderListBox::setScrollOffset(const IntPoint& offset)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayerTest.cpp 149 virtual void setScrollOffset(const IntPoint& scrollOffset) OVERRIDE { m_scrollPosition = scrollOffset; }
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.h 252 virtual void setScrollOffset(const IntPoint&) = 0;
ScrollView.h 51 virtual void setScrollOffset(const IntPoint&) OVERRIDE;
59 // NOTE: This should only be called by the overriden setScrollOffset from ScrollableArea.
ScrollableArea.cpp 171 setScrollOffset(position);
ScrollView.cpp 261 void ScrollView::setScrollOffset(const IntPoint& offset)
    [all...]
  /external/chromium_org/content/renderer/
history_serialization.cc 137 item.setScrollOffset(state.scroll_offset);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
TouchActionTest.cpp 193 document->frame()->view()->setScrollOffset(WebCore::IntPoint(0, kScrollOffset));
ScrollAnimatorNoneTest.cpp 56 MOCK_METHOD1(setScrollOffset, void(const IntPoint&));
120 EXPECT_CALL(scrollableArea, setScrollOffset(_)).Times(4);
154 EXPECT_CALL(scrollableArea, setScrollOffset(_)).Times(4);
    [all...]

Completed in 1193 milliseconds

1 2