Home
last modified time | relevance | path

Searched refs:newPoint (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/
DScrollView.h259 IntPoint newPoint = point; in convertChildToSelf() local
261 newPoint = point - scrollOffset(); in convertChildToSelf()
262 newPoint.move(child->x(), child->y()); in convertChildToSelf()
263 return newPoint; in convertChildToSelf()
268 IntPoint newPoint = point; in convertSelfToChild() local
270 newPoint = point + scrollOffset(); in convertSelfToChild()
271 newPoint.move(-child->x(), -child->y()); in convertSelfToChild()
272 return newPoint; in convertSelfToChild()
DScrollView.cpp1198 IntPoint newPoint = localPoint; in wheelEvent() local
1199 newPoint.move(scrollbar->x(), scrollbar->y()); in wheelEvent()
1200 return newPoint; in wheelEvent()
1205 IntPoint newPoint = parentPoint; in wheelEvent() local
1207 newPoint.move(-scrollbar->x(), -scrollbar->y()); in wheelEvent()
1208 return newPoint; in wheelEvent()
/external/webkit/Source/WebCore/platform/mac/
DScrollAnimatorMac.mm535 NSPoint newPoint;
538newPoint = orientation == HorizontalScrollbar ? NSMakePoint(newPos, targetOrigin.y) : NSMakePoint(…
540newPoint = orientation == HorizontalScrollbar ? NSMakePoint(newPos, m_currentPosY) : NSMakePoint(m…
542 [m_scrollAnimationHelper.get() scrollToPoint:newPoint];