| /xsrc/external/mit/ctwm/dist/ |
| H A D | event_core.c | 66 XEvent Event; /* the current event */ variable in typeref:typename:XEvent 199 CtwmNextEvent(dpy, &Event); 201 if(Event.type < 0 || Event.type >= MAX_X_EVENT) { 202 XtDispatchEvent(&Event); 295 * And dispatchers. These look at the global Event and run with it from 307 Window w = Event.xany.window; 310 StashEventTime(&Event); 312 thisScr = GetTwmScreen(&Event); 314 dumpevent(&Event); [all...] |
| H A D | event_handlers.c | 109 XColormapEvent *cevent = (XColormapEvent *) &Event; 328 * global Event is the same as Tmp_win->w as the event dispatcher 335 event = LastFocusEvent(Event.xany.window, &Event); 445 (unsigned)Event.xcirculate.event, 446 (unsigned)Event.xcirculate.window, 447 Event.xcirculate.place); 451 if(Event.xcirculate.event == vs->window) { 452 TwmWindow *twm_win = GetTwmWindow(Event.xcirculate.window); 457 if(Event [all...] |
| H A D | events.h | 55 extern XEvent Event;
|
| H A D | functions_captive.c | 52 ButtonReleaseMask, &Event); 53 switch(Event.xany.type) {
|
| H A D | functions_win.c | 660 VisibilityChangeMask, &Event); 663 if(Event.xany.type == EnterNotify || 664 Event.xany.type == LeaveNotify) { 668 if(Event.type == MotionNotify) { 671 movementMask | releaseEvent, &Event)) { 672 if(Event.type == releaseEvent) { 682 if(Event.type == releaseEvent) { 687 if(Event.type != MotionNotify) {
|
| H A D | functions_win_moveresize.c | 347 VisibilityChangeMask, &Event); 350 if(Event.xany.type == EnterNotify || 351 Event.xany.type == LeaveNotify) { 356 if(Event.type == MotionNotify) { 357 while(XCheckMaskEvent(dpy, movementMask | releaseEvent, &Event)) 358 if(Event.type == releaseEvent) { 365 if(Event.type == ButtonPress && DragWindow != None) { 381 if(Event.xbutton.button == Button2) { 384 else if(Event.xbutton.button >= Button3) { 397 if(fromtitlebar && Event [all...] |
| /xsrc/external/mit/xinput/dist/src/ |
| H A D | test.c | 99 XEvent Event; local in function:print_events 104 XNextEvent(dpy, &Event); 106 if (Event.type == motion_type) { 108 XDeviceMotionEvent *motion = (XDeviceMotionEvent *) &Event; 116 } else if ((Event.type == button_press_type) || 117 (Event.type == button_release_type)) { 119 XDeviceButtonEvent *button = (XDeviceButtonEvent *) &Event; 121 printf("button %s %d ", (Event.type == button_release_type) ? "release" : "press ", 128 } else if ((Event.type == key_press_type) || 129 (Event [all...] |
| /xsrc/external/mit/twm/dist/src/ |
| H A D | events.c | 83 XEvent Event; /* the current event */ variable in typeref:typename:XEvent 277 * handle a single X event stored in global var Event 283 Window w = Event.xany.window; 285 StashEventTime(&Event); 295 Scr = FindScreenInfo(WindowOfEvent(&Event)); 300 if (menuFromFrameOrWindowOrTitlebar && Event.type == Expose) 303 if (!menuFromFrameOrWindowOrTitlebar && Event.type >= 0 && 304 Event.type < MAX_X_EVENT) { 305 (*EventHandler[Event.type]) (); 312 * handle a single X event stored in global var Event [all...] |
| H A D | events.h | 124 extern XEvent Event;
|
| H A D | menus.c | 482 ButtonMotionMask, &Event); 484 if (Event.type == MotionNotify) { 488 &Event)) 489 if (Event.type == ButtonRelease) 496 if (Event.type == ButtonRelease || Cancel) { 502 if (Event.type != MotionNotify) 1407 ButtonMotionMask, &Event); 1409 if (fromtitlebar && Event.type == ButtonPress) { 1414 if (Event.type == MotionNotify) { 1419 &Event)) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/archrast/ |
| H A D | archrast.h | 46 void Dispatch(HANDLE hThreadContext, const Event& event);
|
| H A D | eventmanager.h | 41 /// Event handling occurs only on a single thread. 50 // Event manager owns destroying handler objects once attached. 64 void Dispatch(const Event& event)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/archrast/ |
| H A D | archrast.h | 46 void Dispatch(HANDLE hThreadContext, const Event& event);
|
| H A D | eventmanager.h | 41 /// Event handling occurs only on a single thread. 50 // Event manager owns destroying handler objects once attached. 64 void Dispatch(const Event& event)
|
| /xsrc/external/mit/libXt/dist/test/ |
| H A D | Makefile.am | 3 check_PROGRAMS = Alloc Converters Event
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
| H A D | gen_ar_event.hpp | 54 /// Event - interface for handling events. 56 struct Event struct 58 Event() {} function in struct:Event 59 virtual ~Event() {} 86 struct ${name} : Event
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
| H A D | gen_ar_event.hpp | 63 /// Event - interface for handling events. 65 struct Event struct 68 Event() {} function in struct:Event 69 virtual ~Event() {} 103 struct ${event['name']} : Event
|
| /xsrc/external/mit/MesaLib/dist/include/CL/ |
| H A D | cl2.hpp | 3135 class Event : public detail::Wrapper<cl_event> class in namespace:cl 3139 Event() : detail::Wrapper<cl_type>() { } function in class:cl::Event 3147 * into the new Event object. 3149 explicit Event(const cl_event& event, bool retainObject = false) : function in class:cl::Event 3157 Event& operator = (const cl_event& rhs) 3245 waitForEvents(const vector<Event>& events) 3257 * See Event for details about copy semantics, etc. 3259 class UserEvent : public Event 3282 UserEvent() : Event() { } 3302 WaitForEvents(const vector<Event> [all...] |
| H A D | cl.hpp | 122 * cl::Event event; 2868 class Event : public detail::Wrapper<cl_event> class in namespace:cl 2872 Event() : detail::Wrapper<cl_type>() { } function in class:cl::Event 2877 * into the new Event object. 2879 __CL_EXPLICIT_CONSTRUCTORS Event(const cl_event& event) : detail::Wrapper<cl_type>(event) { } function in class:cl::Event 2886 Event& operator = (const cl_event& rhs) 2974 waitForEvents(const VECTOR_CLASS<Event>& events) 2986 * See Event for details about copy semantics, etc. 2988 class UserEvent : public Event 3011 UserEvent() : Event() { } [all...] |
| /xsrc/external/mit/MesaLib.old/dist/include/CL/ |
| H A D | cl.hpp | 122 * cl::Event event; 2868 class Event : public detail::Wrapper<cl_event> class in namespace:cl 2872 Event() : detail::Wrapper<cl_type>() { } function in class:cl::Event 2877 * into the new Event object. 2879 __CL_EXPLICIT_CONSTRUCTORS Event(const cl_event& event) : detail::Wrapper<cl_type>(event) { } function in class:cl::Event 2886 Event& operator = (const cl_event& rhs) 2974 waitForEvents(const VECTOR_CLASS<Event>& events) 2986 * See Event for details about copy semantics, etc. 2988 class UserEvent : public Event 3011 UserEvent() : Event() { } [all...] |
| H A D | cl2.hpp | 2991 class Event : public detail::Wrapper<cl_event> class in namespace:cl 2995 Event() : detail::Wrapper<cl_type>() { } function in class:cl::Event 3003 * into the new Event object. 3005 explicit Event(const cl_event& event, bool retainObject = false) : function in class:cl::Event 3013 Event& operator = (const cl_event& rhs) 3101 waitForEvents(const vector<Event>& events) 3113 * See Event for details about copy semantics, etc. 3115 class UserEvent : public Event 3138 UserEvent() : Event() { } 3158 WaitForEvents(const vector<Event> [all...] |
| /xsrc/external/mit/editres/dist/ |
| H A D | editresP.h | 214 * The Event Structures. 306 } Event; typedef in typeref:union:_Event 367 extern void BuildVisualTree ( Widget tree_parent, Event * event ); 372 extern TreeInfo * CreateTree ( Event * event ); 373 extern void DisplayChild ( Event * event ); 387 extern char * HandleFlashWidget ( Event * event ); 388 extern char * HandleGetResources ( Event * event ); 404 extern char * PrintSetValuesError ( Event * event );
|
| H A D | comm.c | 70 static Event * BuildEvent ( ProtocolStream * stream ); 71 static void FreeEvent ( Event * event ); 72 static char * DispatchEvent ( Event * event ); 380 Event * event; 550 static Event * 554 Event * event = (Event *) XtCalloc(sizeof(Event), 1); 783 FreeEvent(Event *event) 884 DispatchEvent(Event *even [all...] |
| H A D | setvalues.c | 54 PrintSetValuesError(Event *event)
|
| /xsrc/external/mit/libXt/dist/include/X11/ |
| H A D | TranslateI.h | 274 } Event; typedef in typeref:struct:_EventRec 278 Event event; /* X event description */ 289 Event event; 513 Event* /* event */ 526 Event* /* event */
|