Searched refs:newPoint (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollView.h259 IntPoint newPoint = point; local
261 newPoint = point - scrollOffset();
262 newPoint.moveBy(child->location());
263 return newPoint;
268 IntPoint newPoint = point; local
270 newPoint = point + scrollOffset();
271 newPoint.moveBy(-child->location());
272 return newPoint;
H A DScrollView.cpp1239 IntPoint newPoint = localPoint; local
1240 newPoint.moveBy(scrollbar->location());
1241 return newPoint;
1246 IntPoint newPoint = parentPoint; local
1248 newPoint.moveBy(-scrollbar->location());
1249 return newPoint;
/macosx-10.9.5/WebCore-7537.78.1/accessibility/mac/
H A DWebAccessibilityObjectWrapperBase.mm264 CGPoint newPoint = [wrapper convertPointToScreenSpace:element->points[0]];
265 CGPathMoveToPoint(newPath, nil, newPoint.x, newPoint.y);
270 CGPoint newPoint = [wrapper convertPointToScreenSpace:element->points[0]];
271 CGPathAddLineToPoint(newPath, nil, newPoint.x, newPoint.y);
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DScrollAnimatorMac.mm690 NSPoint newPoint;
693 newPoint = orientation == HorizontalScrollbar ? NSMakePoint(newPos, targetOrigin.y) : NSMakePoint(targetOrigin.x, newPos);
695 newPoint = orientation == HorizontalScrollbar ? NSMakePoint(newPos, m_currentPosY) : NSMakePoint(m_currentPosX, newPos);
697 [m_scrollAnimationHelper.get() scrollToPoint:newPoint];

Completed in 131 milliseconds