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

  /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 127 ASSERT(!(scrollDelta.x() && scrollDelta.y()));
133 if (scrollDelta.x()) {
134 int dx = scrollDelta.x();
145 int dy = scrollDelta.y();
260 if ((dx && m_update.scrollDelta.y()) || (dy && m_update.scrollDelta.x())) {
268 m_update.scrollDelta.move(dx, dy);
271 if (m_update.scrollDelta == IntPoint()) {
339 m_update.scrollDelta = IntPoint()
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebWidget.h 139 virtual void applyScrollAndScale(const WebSize& scrollDelta, float scaleFactor) { }
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp 268 IntSize scrollDelta = newOffset - m_scrollOffset;
269 if (scrollDelta == IntSize())
277 m_pendingScrollDelta += scrollDelta;
279 scrollContents(scrollDelta);
520 IntSize scrollDelta = m_pendingScrollDelta;
522 scrollContents(scrollDelta);
525 void ScrollView::scrollContents(const IntSize& scrollDelta)
541 int panIconDirtySquareSizeLength = 2 * (panIconSizeLength + max(abs(scrollDelta.width()), abs(scrollDelta.height()))); // We only want to repaint what's necessary
548 if (!shouldAttemptToScrollUsingFastPath() || !scrollContentsFastPath(-scrollDelta, scrollViewRect, clipRect)
    [all...]
ScrollView.h 168 void scrollContents(const IntSize& scrollDelta);
276 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
  /external/chromium_org/third_party/WebKit/Source/web/
WebPopupMenuImpl.cpp 391 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect)
394 int dx = scrollDelta.width();
395 int dy = scrollDelta.height();
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.h 124 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
ChromeClientImpl.cpp 497 const IntSize& scrollDelta, const IntRect& scrollRect,
502 int dx = scrollDelta.width();
503 int dy = scrollDelta.height();
ChromeClientImpl.h 122 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll,
WebPluginContainerImpl.cpp 394 IntSize scrollDelta(dx, dy);
397 parent()->hostWindow()->scroll(scrollDelta, damageRect, damageRect);
WebViewImpl.cpp     [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());
WebFrameTest.cpp     [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.cpp 76 void Chrome::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect)
78 m_client->scroll(scrollDelta, rectToScroll, clipRect);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.h 329 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) OVERRIDE;
FrameView.cpp     [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
TestingCamera.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Workspace.java     [all...]

Completed in 788 milliseconds