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

  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11events.c 420 printf("EnterNotify! (%d,%d)\n", xevent.xcrossing.x, xevent.xcrossing.y);
421 if ( xevent.xcrossing.mode == NotifyGrab )
423 if ( xevent.xcrossing.mode == NotifyUngrab )
426 if ( (xevent.xcrossing.mode != NotifyGrab) &&
427 (xevent.xcrossing.mode != NotifyUngrab) ) {
432 xevent.xcrossing.x,
433 xevent.xcrossing.y);
441 printf("LeaveNotify! (%d,%d)\n", xevent.xcrossing.x, xevent.xcrossing.y)
    [all...]
  /external/webkit/WebCore/plugins/gtk/
PluginViewGtk.cpp 417 XCrossingEvent& xcrossing = xEvent->xcrossing; local
418 xcrossing.type = event->type() == eventNames().mouseoverEvent ? EnterNotify : LeaveNotify;
419 xcrossing.root = getRootWindow(parentFrame);
420 xcrossing.subwindow = 0;
421 xcrossing.time = event->timeStamp();
422 xcrossing.x = postZoomPos.y();
423 xcrossing.y = postZoomPos.x();
424 xcrossing.x_root = event->screenX();
425 xcrossing.y_root = event->screenY()
    [all...]
  /external/webkit/WebCore/plugins/qt/
PluginViewQt.cpp 372 XCrossingEvent& xcrossing = xEvent->xcrossing; local
373 xcrossing.type = event->type() == eventNames().mouseoverEvent ? EnterNotify : LeaveNotify;
374 xcrossing.root = QX11Info::appRootWindow();
375 xcrossing.subwindow = 0;
376 xcrossing.time = event->timeStamp();
377 xcrossing.x = postZoomPos.y();
378 xcrossing.y = postZoomPos.x();
379 xcrossing.x_root = event->screenX();
380 xcrossing.y_root = event->screenY()
    [all...]

Completed in 62 milliseconds