Lines Matching refs:deltaX
1252 …// <rdar://problem/7111003> deltaX and deltaY are incorrect for NSMouseMoved, NSTabletPointEventSu…
1257 …// <rdar://problem/7979468> deltaX and deltaY are incorrect for NSOtherMouseDown and NSOtherMouseU…
1283 ErrorF(" delta: (%0.2f, %0.2f)\n", [e deltaX], -[e deltaY]);
1284 ErrorF(" location: (%0.2f, %0.2f)\n", lastpt.x + [e deltaX],
1290 location.x = lastpt.x + [e deltaX];
1299 location.x = lastpt.x + [e deltaX];
1473 [e deltaX], [e deltaY]);
1509 CGFloat deltaX = [e deltaX];
1526 deltaX *= lineHeight / 5.0;
1533 deltaX *= -1;
1556 if (deltaX != 0.0) {
1558 if ((deficit_x < 0.0 && deltaX > 0.0) ||
1559 (deficit_x > 0.0 && deltaX < 0.0)) {
1566 if (fabs(deltaX) > fabs(deficit_x)) {
1567 deltaX -= deficit_x;
1569 if (deltaX > 0.0) {
1570 deficit_x = ceil(deltaX) - deltaX;
1571 deltaX = ceil(deltaX);
1573 deficit_x = floor(deltaX) - deltaX;
1574 deltaX = floor(deltaX);
1577 deficit_x -= deltaX;
1579 if (deltaX > 0.0) {
1580 deltaX = 1.0;
1582 deltaX = -1.0;
1585 deficit_x += deltaX;
1623 DarwinSendScrollEvents(deltaX, deltaY);