Searched defs:scrollPoint (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/history/qt/
H A DHistoryItemQt.cpp48 WebCore::IntPoint scrollPoint; local
57 in >> scrollPoint >> dailyVisitCounts >> weeklyVisitCounts;
67 setScrollPoint(scrollPoint);
102 out << visitCount() << documentState() << scrollPoint();
/external/webkit/Source/WebCore/platform/wx/
H A DScrollViewWx.cpp179 void ScrollView::platformSetScrollPosition(const IntPoint& scrollPoint) argument
185 wxPoint newScrollOffset(scrollPoint);
/external/webkit/Source/WebCore/history/
H A DHistoryItem.cpp406 const IntPoint& HistoryItem::scrollPoint() const function in class:WebCore::HistoryItem
/external/webkit/Source/WebCore/page/
H A DChrome.cpp91 void Chrome::delegatedScrollRequested(const IntPoint& scrollPoint) argument
93 m_client->delegatedScrollRequested(scrollPoint);
H A DFrameView.cpp1484 void FrameView::setScrollPosition(const IntPoint& scrollPoint) argument
1489 ScrollView::setScrollPosition(scrollPoint);
/external/webkit/Source/WebCore/platform/
H A DScrollView.cpp356 IntPoint ScrollView::adjustScrollPositionWithinRange(const IntPoint& scrollPoint) const
358 IntPoint newScrollPosition = scrollPoint.shrunkTo(maximumScrollPosition());
436 void ScrollView::setScrollPosition(const IntPoint& scrollPoint) argument
442 platformSetScrollPosition(scrollPoint);
448 hostWindow()->delegatedScrollRequested(scrollPoint);
450 m_actualVisibleContentRect.setLocation(scrollPoint);
455 IntPoint newScrollPosition = adjustScrollPositionWithinRange(scrollPoint);
598 IntPoint scrollPoint = adjustScrollPositionWithinRange(IntPoint(desiredOffset)); local
599 IntSize scroll(scrollPoint.x(), scrollPoint
[all...]

Completed in 998 milliseconds