Searched refs:wheelTicksY (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/
H A DPlatformWheelEvent.h89 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
96 , m_wheelTicksY(wheelTicksY)
143 float wheelTicksY() const { return m_wheelTicksY; } function in class:WebCore::PlatformWheelEvent
/macosx-10.10/WebKit2-7600.1.25/Shared/efl/
H A DWebEventFactory.cpp151 float wheelTicksY = 0; local
164 wheelTicksY = deltaY;
174 FloatSize(wheelTicksX, wheelTicksY),
/macosx-10.10/WebCore-7600.1.25/dom/
H A DWheelEvent.cpp73 , m_wheelDelta(event.wheelTicksX() * TickMultiplier, event.wheelTicksY() * TickMultiplier)
/macosx-10.10/WebKit2-7600.1.25/Shared/mac/
H A DWebEventFactory.mm369 float wheelTicksY = 0;
376 wheelTicksY = deltaY / static_cast<float>(Scrollbar::pixelsPerLineStep());
380 wheelTicksY = deltaY;
406 return WebWheelEvent(WebEvent::Wheel, IntPoint(position), IntPoint(globalPosition), FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, directionInvertedFromDevice, phase, momentumPhase, hasPreciseScrollingDeltas, scrollCount, unacceleratedScrollingDelta, modifiers, timestamp);
/macosx-10.10/WebCore-7600.1.25/replay/
H A DSerializationMethods.cpp390 ENCODE_TYPE_WITH_KEY(encodedData, float, wheelTicksY, input.wheelTicksY());
419 DECODE_TYPE_WITH_KEY(encodedData, float, wheelTicksY);
434 deltaX, deltaY, wheelTicksX, wheelTicksY, granularity, shiftKey, ctrlKey, altKey, metaKey); local

Completed in 125 milliseconds