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/core/platform/
HostWindow.h 52 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) = 0;
ScrollView.cpp 307 IntSize scrollDelta = newOffset - m_scrollOffset;
308 if (scrollDelta == IntSize())
316 scrollContents(scrollDelta);
551 void ScrollView::scrollContents(const IntSize& scrollDelta)
567 int panIconDirtySquareSizeLength = 2 * (panIconSizeLength + max(abs(scrollDelta.width()), abs(scrollDelta.height()))); // We only want to repaint what's necessary
576 if (!scrollContentsFastPath(-scrollDelta, scrollViewRect, clipRect))
591 bool ScrollView::scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect)
593 hostWindow()->scroll(scrollDelta, rectToScroll, clipRect);
    [all...]
ScrollView.h 172 void scrollContents(const IntSize& scrollDelta);
285 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
  /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 152 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 104 virtual void scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) OVERRIDE
106 m_popup->widgetClient()->didScrollRect(scrollDelta.width(), scrollDelta.height(), intersection(scrollRect, clipRect));
WebPopupMenuImpl.cpp 356 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect)
359 int dx = scrollDelta.width();
360 int dy = scrollDelta.height();
WebPopupMenuImpl.h 117 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
ChromeClientImpl.cpp 500 const IntSize& scrollDelta, const IntRect& scrollRect,
505 int dx = scrollDelta.width();
506 int dy = scrollDelta.height();
510 m_webView->scrollRootLayerRect(scrollDelta, clipRect);
    [all...]
ChromeClientImpl.h 117 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll,
WebPluginContainerImpl.cpp 378 IntSize scrollDelta(dx, dy);
381 parent()->hostWindow()->scroll(scrollDelta, damageRect, damageRect);
WebViewImpl.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/win/
WebInputEventFactory.cpp 461 float scrollDelta = wheelDelta;
467 scrollDelta *= static_cast<float>(scrollChars) * scrollbarPixelsPerLine;
474 scrollDelta *= static_cast<float>(scrollLines) * scrollbarPixelsPerLine;
480 result.deltaX = scrollDelta;
483 result.deltaY = scrollDelta;
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java     [all...]
ScrollView.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollAnimatorMac.h 66 void sendContentAreaScrolledSoon(const FloatSize& scrollDelta);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PaintAggregatorTest.cpp 128 EXPECT_EQ(delta.x(), update.scrollDelta.x());
129 EXPECT_EQ(delta.y(), update.scrollDelta.y());
157 EXPECT_EQ(expectedDelta.x(), update.scrollDelta.x());
158 EXPECT_EQ(expectedDelta.y(), update.scrollDelta.y());
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.cpp 78 void Chrome::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect)
80 m_client->scroll(scrollDelta, rectToScroll, clipRect);
FrameView.h 341 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
FrameView.cpp     [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
TestingCamera.java     [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentViewGestureHandlerTest.java     [all...]

Completed in 3717 milliseconds

1 2