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));
WebPopupMenuImpl.cpp 357 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect)
360 int dx = scrollDelta.width();
361 int dy = scrollDelta.height();
WebInputEventFactoryWin.cpp 470 float scrollDelta = wheelDelta;
476 scrollDelta *= static_cast<float>(scrollChars) * scrollbarPixelsPerLine;
483 scrollDelta *= static_cast<float>(scrollLines) * scrollbarPixelsPerLine;
489 result.deltaX = scrollDelta;
492 result.deltaY = scrollDelta;
WebPopupMenuImpl.h 118 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
ChromeClientImpl.cpp 507 const IntSize& scrollDelta, const IntRect& scrollRect,
512 int dx = scrollDelta.width();
513 int dy = scrollDelta.height();
517 m_webView->scrollRootLayerRect(scrollDelta, clipRect);
    [all...]
ChromeClientImpl.h 121 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll,
WebPluginContainerImpl.cpp 386 IntSize scrollDelta(dx, dy);
389 parent()->hostWindow()->scroll(scrollDelta, damageRect, damageRect);
WebViewImpl.cpp     [all...]
WebViewImpl.h 489 void scrollRootLayerRect(const WebCore::IntSize& scrollDelta, const WebCore::IntRect& clipRect);
    [all...]
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java     [all...]
ScrollView.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/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());
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp 275 IntSize scrollDelta = newOffset - m_scrollOffset;
276 if (scrollDelta == IntSize())
284 scrollContents(scrollDelta);
524 void ScrollView::scrollContents(const IntSize& scrollDelta)
540 int panIconDirtySquareSizeLength = 2 * (panIconSizeLength + max(abs(scrollDelta.width()), abs(scrollDelta.height()))); // We only want to repaint what's necessary
549 if (!scrollContentsFastPath(-scrollDelta, scrollViewRect, clipRect))
564 bool ScrollView::scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect)
566 hostWindow()->scroll(scrollDelta, rectToScroll, clipRect);
    [all...]
ScrollView.h 169 void scrollContents(const IntSize& scrollDelta);
283 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
  /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);
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
TestingCamera.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.h 351 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
FrameView.cpp     [all...]

Completed in 437 milliseconds

1 2