OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xcrossing
(Results
1 - 5
of
5
) 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/Source/WebCore/plugins/gtk/
PluginViewGtk.cpp
382
XCrossingEvent&
xcrossing
= xEvent->
xcrossing
;
local
383
xcrossing
.type = event->type() == eventNames().mouseoverEvent ? EnterNotify : LeaveNotify;
384
xcrossing
.root = getRootWindow(parentFrame);
385
xcrossing
.subwindow = 0;
386
xcrossing
.time = event->timeStamp();
387
xcrossing
.x = postZoomPos.y();
388
xcrossing
.y = postZoomPos.x();
389
xcrossing
.x_root = event->screenX();
390
xcrossing
.y_root = event->screenY()
[
all
...]
/external/webkit/Source/WebCore/plugins/qt/
PluginViewQt.cpp
529
XCrossingEvent&
xcrossing
= xEvent->
xcrossing
;
local
530
xcrossing
.type = event->type() == eventNames().mouseoverEvent ? EnterNotify : LeaveNotify;
531
xcrossing
.root = QX11Info::appRootWindow();
532
xcrossing
.subwindow = 0;
533
xcrossing
.time = event->timeStamp();
534
xcrossing
.x = postZoomPos.y();
535
xcrossing
.y = postZoomPos.x();
536
xcrossing
.x_root = event->screenX();
537
xcrossing
.y_root = event->screenY()
[
all
...]
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
NetscapePluginX11.cpp
324
XCrossingEvent&
xCrossing
= xEvent.
xcrossing
;
325
setCommonMouseEventFields(
xCrossing
, webEvent, pluginLocation);
327
xCrossing
.type = type;
328
xCrossing
.mode = NotifyNormal;
329
xCrossing
.detail = NotifyDetailNone;
330
xCrossing
.focus = false;
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xlib.h
984
XCrossingEvent
xcrossing
;
member in union:_XEvent
[
all
...]
Completed in 2737 milliseconds