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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
HostWindow.h 53 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/painting/
PaintAggregator.h 46 // by the amount specified by |scrollDelta|. If |paintRects| is non-empty,
49 // |scrollDelta| can only specify scrolling in one direction (i.e., the x
56 // |scrollDelta|. This rect must be repainted.
62 WebCore::IntPoint scrollDelta;
PaintAggregator.cpp 125 ASSERT(!(scrollDelta.x() && scrollDelta.y()));
131 if (scrollDelta.x()) {
132 int dx = scrollDelta.x();
143 int dy = scrollDelta.y();
258 if ((dx && m_update.scrollDelta.y()) || (dy && m_update.scrollDelta.x())) {
266 m_update.scrollDelta.move(dx, dy);
269 if (m_update.scrollDelta == IntPoint()) {
337 m_update.scrollDelta = IntPoint()
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebWidget.h 147 virtual void applyScrollAndScale(const WebSize& scrollDelta, float scaleFactor) { }
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
HorizontalScrollView.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPagePopupImpl.cpp 100 virtual void scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) OVERRIDE
102 m_popup->widgetClient()->didScrollRect(scrollDelta.width(), scrollDelta.height(), intersection(scrollRect, clipRect));