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

  /external/webkit/Source/WebCore/history/qt/
HistoryItemQt.cpp 48 WebCore::IntPoint scrollPoint;
57 in >> scrollPoint >> dailyVisitCounts >> weeklyVisitCounts;
67 setScrollPoint(scrollPoint);
102 out << visitCount() << documentState() << scrollPoint();
  /external/webkit/Source/WebCore/platform/
HostWindow.h 55 virtual void delegatedScrollRequested(const IntPoint& scrollPoint) = 0;
ScrollView.cpp 345 IntPoint ScrollView::adjustScrollPositionWithinRange(const IntPoint& scrollPoint) const
347 IntPoint newScrollPosition = scrollPoint.shrunkTo(maximumScrollPosition());
405 void ScrollView::setScrollPosition(const IntPoint& scrollPoint)
411 platformSetScrollPosition(scrollPoint);
417 hostWindow()->delegatedScrollRequested(scrollPoint);
419 m_actualVisibleContentRect.setLocation(scrollPoint);
424 IntPoint newScrollPosition = adjustScrollPositionWithinRange(scrollPoint);
567 IntPoint scrollPoint = adjustScrollPositionWithinRange(IntPoint(desiredOffset));
568 IntSize scroll(scrollPoint.x(), scrollPoint.y())
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
ScrollViewMac.mm 147 void ScrollView::platformSetScrollPosition(const IntPoint& scrollPoint)
150 NSPoint floatPoint = scrollPoint;
152 [documentView() scrollPoint:tempPoint];