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

  /external/webkit/Source/WebCore/plugins/gtk/
PluginViewGtk.cpp 337 static void setXButtonEventSpecificFields(XEvent* xEvent, MouseEvent* event, const IntPoint& postZoomPos, Frame* parentFrame)
344 xbutton.x = postZoomPos.x();
345 xbutton.y = postZoomPos.y();
364 static void setXMotionEventSpecificFields(XEvent* xEvent, MouseEvent* event, const IntPoint& postZoomPos, Frame* parentFrame)
371 xmotion.x = postZoomPos.x();
372 xmotion.y = postZoomPos.y();
380 static void setXCrossingEventSpecificFields(XEvent* xEvent, MouseEvent* event, const IntPoint& postZoomPos, Frame* parentFrame)
387 xcrossing.x = postZoomPos.y();
388 xcrossing.y = postZoomPos.x();
416 IntPoint postZoomPos = roundedIntPoint(m_element->renderer()->absoluteToLocal(event->absoluteLocation()))
    [all...]
  /external/webkit/Source/WebCore/plugins/qt/
PluginViewQt.cpp 484 static void setXButtonEventSpecificFields(XEvent* xEvent, MouseEvent* event, const IntPoint& postZoomPos)
491 xbutton.x = postZoomPos.x();
492 xbutton.y = postZoomPos.y();
511 static void setXMotionEventSpecificFields(XEvent* xEvent, MouseEvent* event, const IntPoint& postZoomPos)
518 xmotion.x = postZoomPos.x();
519 xmotion.y = postZoomPos.y();
527 static void setXCrossingEventSpecificFields(XEvent* xEvent, MouseEvent* event, const IntPoint& postZoomPos)
534 xcrossing.x = postZoomPos.y();
535 xcrossing.y = postZoomPos.x();
564 IntPoint postZoomPos = roundedIntPoint(m_element->renderer()->absoluteToLocal(event->absoluteLocation()))
    [all...]
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 762 IntPoint postZoomPos = roundedIntPoint(m_element->renderer()->absoluteToLocal(event->absoluteLocation()));
763 pos.h = postZoomPos.x() + m_windowRect.x();
766 pos.v = postZoomPos.y() + m_windowRect.y() - 22;

Completed in 191 milliseconds