HomeSort by relevance Sort by last modified time
    Searched refs:wheelTicks (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebKit2/Shared/gtk/
WebEventFactory.cpp 141 FloatSize wheelTicks;
144 wheelTicks = FloatSize(0, 1);
147 wheelTicks = FloatSize(0, -1);
150 wheelTicks = FloatSize(1, 0);
153 wheelTicks = FloatSize(-1, 0);
162 FloatSize delta(wheelTicks.width() * step, wheelTicks.height() * step);
168 wheelTicks,
  /external/webkit/Source/WebKit2/Shared/
WebWheelEvent.cpp 36 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Modifiers modifiers, double timestamp)
41 , m_wheelTicks(wheelTicks)
52 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Phase phase, Phase momentumPhase, bool hasPreciseScrollingDeltas, Modifiers modifiers, double timestamp)
57 , m_wheelTicks(wheelTicks)
WebEvent.h 178 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Modifiers, double timestamp);
180 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Phase phase, Phase momentumPhase,bool hasPreciseScrollingDeltas, Modifiers, double timestamp);
186 const WebCore::FloatSize wheelTicks() const { return m_wheelTicks; }
WebEventConversion.cpp 106 m_wheelTicksX = webEvent.wheelTicks().width();
107 m_wheelTicksY = webEvent.wheelTicks().height();
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp 855 FloatSize mergedWheelTicks = oldNextWheelEvent->wheelTicks() + newWheelEvent.wheelTicks();
    [all...]

Completed in 441 milliseconds