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

  /external/webkit/WebKit/chromium/src/win/
WebInputEventFactory.cpp 408 float scrollDelta = wheelDelta;
414 scrollDelta *= static_cast<float>(scrollChars) * scrollbarPixelsPerLine;
421 scrollDelta *= static_cast<float>(scrollLines) * scrollbarPixelsPerLine;
427 result.deltaX = scrollDelta;
430 result.deltaY = scrollDelta;
  /external/webkit/WebCore/platform/
ScrollView.cpp 260 IntSize scrollDelta = newOffset - m_scrollOffset;
261 if (scrollDelta == IntSize())
268 scrollContents(scrollDelta);
484 IntSize scrollDelta = scroll - m_scrollOffset;
485 if (scrollDelta != IntSize()) {
487 scrollContents(scrollDelta);
495 void ScrollView::scrollContents(const IntSize& scrollDelta)
511 int panIconDirtySquareSizeLength = 2 * (panIconSizeLength + max(abs(scrollDelta.width()), abs(scrollDelta.height()))); // We only want to repaint what's necessary
520 hostWindow()->scroll(-scrollDelta, scrollViewRect, clipRect)
    [all...]
  /external/webkit/WebKit/android/nav/
CachedRoot.cpp 704 bool newNodeInView = scrollDelta(newOutset, direction, &delta);
    [all...]
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 827 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
828 doScrollX(scrollDelta);
832 int scrollDelta = maxJump;
834 if (direction == View.FOCUS_LEFT && getScrollX() < scrollDelta) {
835 scrollDelta = getScrollX();
843 scrollDelta = daRight - screenRight;
846 if (scrollDelta == 0) {
849 doScrollX(direction == View.FOCUS_RIGHT ? scrollDelta : -scrollDelta);
    [all...]
ScrollView.java 827 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
828 doScrollY(scrollDelta);
832 int scrollDelta = maxJump;
834 if (direction == View.FOCUS_UP && getScrollY() < scrollDelta) {
835 scrollDelta = getScrollY();
843 scrollDelta = daBottom - screenBottom;
847 if (scrollDelta == 0) {
850 doScrollY(direction == View.FOCUS_DOWN ? scrollDelta : -scrollDelta);
    [all...]

Completed in 178 milliseconds