Searched refs:event (Results 1 - 25 of 1579) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit2-7600.1.25/Shared/gtk/
H A DNativeWebMouseEventGtk.cpp34 NativeWebMouseEvent::NativeWebMouseEvent(GdkEvent* event, int eventClickCount) argument
35 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, eventClickCount))
36 , m_nativeEvent(gdk_event_copy(event))
40 NativeWebMouseEvent::NativeWebMouseEvent(const NativeWebMouseEvent& event) argument
41 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event.nativeEvent(), event.clickCount()))
42 , m_nativeEvent(gdk_event_copy(event.nativeEvent()))
H A DNativeWebTouchEventGtk.cpp34 NativeWebTouchEvent::NativeWebTouchEvent(GdkEvent* event, WebCore::GtkTouchContextHelper& context) argument
35 : WebTouchEvent(WebEventFactory::createWebTouchEvent(event, context))
36 , m_nativeEvent(gdk_event_copy(event))
41 NativeWebTouchEvent::NativeWebTouchEvent(const NativeWebTouchEvent& event) argument
42 : WebTouchEvent(WebEventFactory::createWebTouchEvent(event.nativeEvent(), event.touchContext()))
43 , m_nativeEvent(gdk_event_copy(event.nativeEvent()))
44 , m_touchContext(event.touchContext())
H A DNativeWebWheelEventGtk.cpp34 NativeWebWheelEvent::NativeWebWheelEvent(GdkEvent* event) argument
35 : WebWheelEvent(WebEventFactory::createWebWheelEvent(event))
36 , m_nativeEvent(gdk_event_copy(event))
40 NativeWebWheelEvent::NativeWebWheelEvent(const NativeWebWheelEvent& event) argument
41 : WebWheelEvent(WebEventFactory::createWebWheelEvent(event.nativeEvent()))
42 , m_nativeEvent(gdk_event_copy(event.nativeEvent()))
H A DNativeWebKeyboardEventGtk.cpp38 NativeWebKeyboardEvent::NativeWebKeyboardEvent(GdkEvent* event, const WebCore::CompositionResults& compositionResults, GtkInputMethodFilter::EventFakedForComposition faked) argument
39 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event, compositionResults))
40 , m_nativeEvent(gdk_event_copy(event))
46 NativeWebKeyboardEvent::NativeWebKeyboardEvent(const NativeWebKeyboardEvent& event) argument
47 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event.nativeEvent(), event.compositionResults()))
48 , m_nativeEvent(gdk_event_copy(event.nativeEvent()))
49 , m_compositionResults(event.compositionResults())
50 , m_fakeEventForComposition(event.isFakeEventForComposition())
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DPlatformMouseEventEfl.cpp50 PlatformMouseEvent::PlatformMouseEvent(const Evas_Event_Mouse_Down* event, IntPoint position) argument
51 : PlatformEvent(PlatformEvent::MousePressed, evas_key_modifier_is_set(event->modifiers, "Shift"), evas_key_modifier_is_set(event->modifiers, "Control"), evas_key_modifier_is_set(event->modifiers, "Alt"), evas_key_modifier_is_set(event->modifiers, "Meta"), currentTime())
52 , m_position(IntPoint(event->canvas.x - position.x(), event->canvas.y - position.y()))
53 , m_globalPosition(IntPoint(event->canvas.x, event->canvas.y))
54 , m_button(MouseButton(event
59 PlatformMouseEvent(const Evas_Event_Mouse_Up* event, IntPoint position) argument
68 PlatformMouseEvent(const Evas_Event_Mouse_Move* event, IntPoint position) argument
[all...]
H A DPlatformKeyboardEventEfl.cpp42 PlatformKeyboardEvent::PlatformKeyboardEvent(const Evas_Event_Key_Down* event) argument
43 : PlatformEvent(PlatformEvent::KeyDown, evas_key_modifier_is_set(event->modifiers, "Shift"), evas_key_modifier_is_set(event->modifiers, "Control"), evas_key_modifier_is_set(event->modifiers, "Alt"), evas_key_modifier_is_set(event->modifiers, "Meta"), currentTime())
44 , m_text(String::fromUTF8(event->string))
45 , m_unmodifiedText(String::fromUTF8(event->string))
46 , m_keyIdentifier(keyIdentifierForEvasKeyName(String(event->key)))
47 , m_windowsVirtualKeyCode(windowsKeyCodeForEvasKeyName(String(event->key)))
51 , m_isKeypad(String(event
56 PlatformKeyboardEvent(const Evas_Event_Key_Up* event) argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/Shared/efl/
H A DNativeWebKeyboardEventEfl.cpp33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(const Evas_Event_Key_Down* event, bool isFiltered) argument
34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event))
35 , m_nativeEvent(event)
40 NativeWebKeyboardEvent::NativeWebKeyboardEvent(const Evas_Event_Key_Up* event) argument
41 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event))
42 , m_nativeEvent(event)
H A DNativeWebWheelEventEfl.cpp33 NativeWebWheelEvent::NativeWebWheelEvent(const Evas_Event_Mouse_Wheel* event, const WebCore::AffineTransform& toWebContent, const WebCore::AffineTransform& toDeviceScreen) argument
34 : WebWheelEvent(WebEventFactory::createWebWheelEvent(event, toWebContent, toDeviceScreen))
35 , m_nativeEvent(event)
/macosx-10.10/WebKit2-7600.1.25/Shared/ios/
H A DNativeWebKeyboardEventIOS.mm35 NativeWebKeyboardEvent::NativeWebKeyboardEvent(WebIOSEvent *event)
36 : WebKeyboardEvent(WebIOSEventFactory::createWebKeyboardEvent(event))
37 , m_nativeEvent(event)
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DPlatformEventFactoryMac.mm48 static IntPoint globalPointForEvent(NSEvent *event)
50 switch ([event type]) {
64 return globalPoint([event locationInWindow], [event window]);
70 static IntPoint pointForEvent(NSEvent *event, NSView *windowView)
72 switch ([event type]) {
88 NSPoint location = [event locationInWindow];
98 static MouseButton mouseButtonForEvent(NSEvent *event)
100 switch ([event type]) {
118 static PlatformEvent::Type mouseEventTypeForEvent(NSEvent* event)
[all...]
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLSelectElementWin.cpp37 bool HTMLSelectElement::platformHandleKeydownEvent(KeyboardEvent* event) argument
40 bool eventShowsMenu = (!event->altKey() && !event->ctrlKey() && event->keyIdentifier() == "F4")
41 || ((event->altGraphKey() || event->altKey()) && (event->keyIdentifier() == "Down" || event->keyIdentifier() == "Up"));
55 event->setDefaultHandled();
H A DBaseClickableWithKeyInputType.cpp42 void BaseClickableWithKeyInputType::handleKeydownEvent(HTMLInputElement& element, KeyboardEvent* event) argument
44 const String& key = event->keyIdentifier();
52 void BaseClickableWithKeyInputType::handleKeypressEvent(HTMLInputElement& element, KeyboardEvent* event) argument
54 int charCode = event->charCode();
56 element.dispatchSimulatedClick(event);
57 event->setDefaultHandled();
62 event->setDefaultHandled();
66 void BaseClickableWithKeyInputType::handleKeyupEvent(InputType& inputType, KeyboardEvent* event) argument
68 const String& key = event->keyIdentifier();
72 inputType.dispatchSimulatedClickIfActive(event);
81 handleKeydownEvent(KeyboardEvent* event) argument
83 handleKeydownEvent(element(), event); local
86 handleKeypressEvent(KeyboardEvent* event) argument
88 handleKeypressEvent(element(), event); local
91 handleKeyupEvent(KeyboardEvent* event) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/
H A DIDBEventDispatcher.cpp39 bool IDBEventDispatcher::dispatch(Event* event, Vector<RefPtr<EventTarget>>& eventTargets) argument
44 event->setEventPhase(Event::CAPTURING_PHASE);
46 event->setCurrentTarget(eventTargets[i].get());
47 eventTargets[i]->fireEventListeners(event);
48 if (event->propagationStopped())
52 event->setEventPhase(Event::AT_TARGET);
53 event->setCurrentTarget(eventTargets[0].get());
54 eventTargets[0]->fireEventListeners(event);
55 if (event->propagationStopped() || !event
[all...]
/macosx-10.10/screen-22/screen/
H A Dsched.h25 struct event struct
27 struct event *next;
28 void (*handler) __P((struct event *, char *));
/macosx-10.10/WebKit2-7600.1.25/Shared/mac/
H A DNativeWebMouseEventMac.mm35 NativeWebMouseEvent::NativeWebMouseEvent(NSEvent* event, NSView* view)
36 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, view))
37 , m_nativeEvent(event)
H A DNativeWebWheelEventMac.mm35 NativeWebWheelEvent::NativeWebWheelEvent(NSEvent* event, NSView* view)
36 : WebWheelEvent(WebEventFactory::createWebWheelEvent(event, view))
37 , m_nativeEvent(event)
/macosx-10.10/Chess-310.6/Sources/
H A DMBCBoardViewMouse.h52 - (void) mouseDown:(NSEvent *)event;
53 - (void) mouseMoved:(NSEvent *)event;
54 - (void) mouseUp:(NSEvent *)event;
55 - (void) dragAndRedraw:(NSEvent *)event forceRedraw:(BOOL)force;
/macosx-10.10/WebKit-7600.1.25/mac/Plugins/
H A DWebNetscapePluginEventHandlerCocoa.mm42 static inline void initializeEvent(NPCocoaEvent* event, NPCocoaEventType type)
44 event->type = type;
45 event->version = 0;
50 NPCocoaEvent event;
52 initializeEvent(&event, NPCocoaEventDrawRect);
53 event.data.draw.context = context;
54 event.data.draw.x = rect.origin.x;
55 event.data.draw.y = rect.origin.y;
56 event.data.draw.width = rect.size.width;
57 event
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/ios/
H A DPlatformEventFactoryIOS.mm37 static unsigned modifiersForEvent(WebEvent *event)
41 if (event.modifierFlags & WebEventFlagMaskShift)
43 if (event.modifierFlags & WebEventFlagMaskControl)
45 if (event.modifierFlags & WebEventFlagMaskAlternate)
47 if (event.modifierFlags & WebEventFlagMaskCommand)
53 static inline IntPoint pointForEvent(WebEvent *event)
55 return IntPoint(event.locationInWindow);
58 static inline IntPoint globalPointForEvent(WebEvent *event)
61 return pointForEvent(event);
64 static PlatformEvent::Type mouseEventType(WebEvent *event)
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/evolve/
H A DEvolveListener.java24 boolean evolveProgress(EvolveEvent event); argument
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Devent.c18 /* $Id: event.c,v 1.21 2007/06/19 23:47:17 tbox Exp $ */
27 #include <isc/event.h>
36 destroy(isc_event_t *event) { argument
37 isc_mem_t *mctx = event->ev_destroy_arg;
39 isc_mem_put(mctx, event, event->ev_size);
46 isc_event_t *event; local
52 event = isc_mem_get(mctx, size);
53 if (event == NULL)
58 * evils here. If the event
78 isc_event_t *event; local
[all...]
/macosx-10.10/ntp-92/lib/isc/
H A Devent.c18 /* $Id: event.c,v 1.21 2007/06/19 23:47:17 tbox Exp $ */
27 #include <isc/event.h>
36 destroy(isc_event_t *event) { argument
37 isc_mem_t *mctx = event->ev_destroy_arg;
39 isc_mem_put(mctx, event, event->ev_size);
46 isc_event_t *event; local
52 event = isc_mem_get(mctx, size);
53 if (event == NULL)
58 * evils here. If the event
78 isc_event_t *event; local
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DAppleEmbeddedHIDEventService.cpp65 IOHIDEvent * event = IOHIDEvent::accelerometerEvent(timestamp, x, y, z, type, subType, sequence, options); local
67 if ( event ) {
68 dispatchEvent(event);
69 event->release();
79 IOHIDEvent * event = IOHIDEvent::gyroEvent(timestamp, x, y, z, type, subType, sequence, options); local
81 if ( event ) {
82 dispatchEvent(event);
83 event->release();
92 IOHIDEvent * event = IOHIDEvent::compassEvent(timestamp, x, y, z, type, subType, sequence, options); local
94 if ( event ) {
105 IOHIDEvent * event = IOHIDEvent::proximityEvent(timestamp, mask, level, options); local
118 IOHIDEvent * event = IOHIDEvent::ambientLightSensorEvent(timestamp, level, channel0, channel1, channel2, channel3, options); local
131 IOHIDEvent * event = IOHIDEvent::temperatureEvent(timestamp, temperature, options); local
144 IOHIDEvent * event = IOHIDEvent::powerEvent(timestamp, measurement, powerType, powerSubType, options); local
157 IOHIDEvent * event = IOHIDEvent::vendorDefinedEvent(timeStamp, usagePage, usage, version, data, length, options); local
170 IOHIDEvent * event = IOHIDEvent::biometricEvent(timeStamp, level, eventType, options); local
183 IOHIDEvent * event = IOHIDEvent::atmosphericPressureEvent(timeStamp, level, sequence, options); local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/ios/wak/
H A DWAKResponder.m36 // FIXME: the functions named handleEvent generally do not forward event to the parent chain.
38 - (void)handleEvent:(WebEvent *)event
40 UNUSED_PARAM(event);
43 - (void)_forwardEvent:(WebEvent *)event
45 [[self nextResponder] handleEvent:event];
48 - (void)scrollWheel:(WebEvent *)event
50 [self _forwardEvent:event];
53 - (void)mouseEntered:(WebEvent *)event
55 [self _forwardEvent:event];
58 - (void)mouseExited:(WebEvent *)event
[all...]
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dlevents.el1 ;;; levents.el --- emulate the Lucid event data type and associated functions
29 ;; It is not possible to emulate current-mouse-event as a variable,
32 ;; We do not have a variable unread-command-event;
40 (defun next-command-event (event)
41 (error "You must rewrite to use `read-command-event' instead of `next-command-event'"))
43 (defun next-event (event)
44 (error "You must rewrite to use `read-event' instea
[all...]

Completed in 151 milliseconds

1234567891011>>