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

  /packages/apps/Camera/src/com/android/camera/ui/
GLListView.java 188 setScrollPosition(mScroller.getCurrY(), false);
249 setScrollPosition(mScrollY, true);
252 private void setScrollPosition(int position, boolean force) {
368 setScrollPosition(mScrollY + (int) distanceY, false);
  /external/webkit/WebCore/platform/
ScrollView.h 142 // Methods for scrolling the view. setScrollPosition is the only method that really scrolls the view. The other two methods are helper functions
143 // that ultimately end up calling setScrollPosition.
144 void setScrollPosition(const IntPoint&);
145 void scrollBy(const IntSize& s) { return setScrollPosition(scrollPosition() + s); }
ScrollView.cpp 284 view->setScrollPosition(rect.location());
301 void ScrollView::setScrollPosition(const IntPoint& scrollPoint)
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebframe.h 113 Q_PROPERTY(QPoint scrollPosition READ scrollPosition WRITE setScrollPosition)
161 void setScrollPosition(const QPoint &pos);
qwebview.cpp 182 void setScrollPosition(const QPoint& point, const QPoint& /* overShootDelta */)
186 frame->setScrollPosition(point);
qwebframe.cpp     [all...]
  /external/webkit/WebCore/html/
HTMLBodyElement.cpp 294 sview->setScrollPosition(IntPoint(static_cast<int>(scrollLeft * sview->frame()->zoomFactor()), sview->scrollY()));
313 sview->setScrollPosition(IntPoint(sview->scrollX(), static_cast<int>(scrollTop * sview->frame()->zoomFactor())));
  /external/webkit/WebCore/page/
FrameView.h 135 virtual void setScrollPosition(const IntPoint&);
FrameView.cpp 957 void FrameView::setScrollPosition(const IntPoint& scrollPoint)
962 ScrollView::setScrollPosition(scrollPoint);
    [all...]
DOMWindow.cpp 1172 view->setScrollPosition(IntPoint(zoomedX, zoomedY));
    [all...]
Frame.cpp 718 view()->setScrollPosition(IntPoint(scrollPosition.x() * percentDifference, scrollPosition.y() * percentDifference));
    [all...]
  /external/webkit/WebKit/wx/
WebView.cpp 816 frame->view()->setScrollPosition(WebCore::IntPoint(frame->view()->scrollX(), frame->view()->maximumScrollPosition().y()));
820 frame->view()->setScrollPosition(WebCore::IntPoint(frame->view()->scrollX(), 0));
  /external/webkit/WebCore/loader/
ImageDocument.cpp 266 frame()->view()->setScrollPosition(IntPoint(scrollX, scrollY));
HistoryController.cpp 103 view->setScrollPosition(m_currentItem->scrollPoint());
  /external/webkit/WebCore/platform/wx/
ScrollViewWx.cpp 112 m_scrollView->setScrollPosition(IntPoint(pos.x, pos.y));
  /external/webkit/WebCore/platform/chromium/
PopupMenuChromium.cpp 994 ScrollView::setScrollPosition(IntPoint(0, rowRect.y()));
997 ScrollView::setScrollPosition(IntPoint(0, rowRect.bottom() - visibleHeight()));
    [all...]
  /external/webkit/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp     [all...]
  /external/webkit/WebCore/rendering/
RenderLayer.cpp     [all...]

Completed in 5138 milliseconds