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

  /external/webkit/WebCore/platform/
ScrollView.h 136 IntPoint scrollPosition() const { return visibleContentRect().location(); }
139 int scrollX() const { return scrollPosition().x(); }
140 int scrollY() const { return scrollPosition().y(); }
145 void scrollBy(const IntSize& s) { return setScrollPosition(scrollPosition() + s); }
ScrollView.cpp 314 if (newScrollPosition == scrollPosition())
659 IntSize maxScrollDelta = maximumScrollPosition() - scrollPosition();
    [all...]
  /external/webkit/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp 572 void scrollPosition();
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebframe.h 113 Q_PROPERTY(QPoint scrollPosition READ scrollPosition WRITE setScrollPosition)
160 QPoint scrollPosition() const;
qwebview.cpp 171 QPoint scrollPosition() const
174 return frame ? frame->scrollPosition() : QPoint();
qgraphicswebview.cpp 192 const QPoint scrollPosition = q->page()->mainFrame()->scrollPosition();
193 rootGraphicsLayer->setPos(-scrollPosition);
qwebframe.cpp 1059 \sa QWebFrame::scrollPosition
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
DumpRenderTree.cpp 342 SIZE scrollPosition;
343 if (FAILED(framePrivate->scrollOffset(&scrollPosition)))
346 if (abs(scrollPosition.cx) > 0.00000001 || abs(scrollPosition.cy) > 0.00000001) {
357 printf("scrolled to %.f,%.f\n", (double)scrollPosition.cx, (double)scrollPosition.cy);
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
DumpRenderTree.mm 738 NSPoint scrollPosition = [[[[f frameView] documentView] superview] bounds].origin;
739 if (ABS(scrollPosition.x) > 0.00000001 || ABS(scrollPosition.y) > 0.00000001) {
742 printf("scrolled to %.f,%.f\n", scrollPosition.x, scrollPosition.y);
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 60 * @param scrollPosition the position of the scroller in the range
63 public void onScroll(float scrollPosition);
554 public void scrollTo(float scrollPosition) {
555 scrollTo(0, Math.round(scrollPosition * mMaxScrollY));
    [all...]
ImageGallery.java 769 public void onScroll(float scrollPosition) {
770 mScrollPosition = scrollPosition;
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebPDFView.mm     [all...]
  /external/webkit/WebCore/page/
Frame.cpp 716 IntPoint scrollPosition = view()->scrollPosition();
718 view()->setScrollPosition(IntPoint(scrollPosition.x() * percentDifference, scrollPosition.y() * percentDifference));
    [all...]
  /external/webkit/WebCore/loader/
HistoryController.cpp 66 item->setScrollPoint(m_frame->view()->scrollPosition());

Completed in 191 milliseconds