OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:xcrossing
(Results
1 - 4
of
4
) sorted by null
/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
...]
/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
...]
/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 274 milliseconds