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

1234567891011>>

/macosx-10.9.5/WebKit2-7537.78.2/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 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.9.5/WebKit2-7537.78.2/Shared/qt/
H A DNativeWebKeyboardEventQt.cpp33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(QKeyEvent* event) argument
34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event))
35 , m_nativeEvent(*event)
H A DNativeWebTouchEventQt.cpp33 NativeWebTouchEvent::NativeWebTouchEvent(const QTouchEvent* event, const QTransform& fromItemTransform) argument
34 : WebTouchEvent(WebEventFactory::createWebTouchEvent(event, fromItemTransform))
35 , m_nativeEvent(*event)
H A DNativeWebWheelEventQt.cpp33 NativeWebWheelEvent::NativeWebWheelEvent(QWheelEvent* event, const QTransform& fromItemTransform) argument
34 : WebWheelEvent(WebEventFactory::createWebWheelEvent(event, fromItemTransform))
35 , m_nativeEvent(event)
H A DNativeWebMouseEventQt.cpp33 NativeWebMouseEvent::NativeWebMouseEvent(QMouseEvent* event, const QTransform& fromItemTransform, int eventClickCount) argument
34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, fromItemTransform, eventClickCount))
35 , m_nativeEvent(event)
/macosx-10.9.5/WebCore-7537.78.1/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...]
/macosx-10.9.5/WebKit2-7537.78.2/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 DNativeWebMouseEventEfl.cpp33 NativeWebMouseEvent::NativeWebMouseEvent(const Evas_Event_Mouse_Down* event, const WebCore::AffineTransform& toWebContent, const WebCore::AffineTransform& toDeviceScreen) argument
34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, toWebContent, toDeviceScreen))
35 , m_nativeEvent(event)
39 NativeWebMouseEvent::NativeWebMouseEvent(const Evas_Event_Mouse_Up* event, const WebCore::AffineTransform& toWebContent, const WebCore::AffineTransform& toDeviceScreen) argument
40 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, toWebContent, toDeviceScreen))
41 , m_nativeEvent(event)
45 NativeWebMouseEvent::NativeWebMouseEvent(const Evas_Event_Mouse_Move* event, const WebCore::AffineTransform& toWebContent, const WebCore::AffineTransform& toDeviceScreen) argument
46 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, toWebContent, toDeviceScreen))
47 , 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.9.5/WebCore-7537.78.1/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.9.5/WebCore-7537.78.1/dom/
H A DEventDispatchMediator.cpp41 PassRefPtr<EventDispatchMediator> EventDispatchMediator::create(PassRefPtr<Event> event) argument
43 return adoptRef(new EventDispatchMediator(event));
46 EventDispatchMediator::EventDispatchMediator(PassRefPtr<Event> event) argument
47 : m_event(event)
53 ASSERT(m_event.get() == dispatcher->event());
/macosx-10.9.5/WebCore-7537.78.1/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.9.5/screen-22/screen/
H A Dsched.h25 struct event struct
27 struct event *next;
28 void (*handler) __P((struct event *, char *));
/macosx-10.9.5/WebKit2-7537.78.2/Shared/mac/
H A DNativeWebKeyboardEventMac.mm35 NativeWebKeyboardEvent::NativeWebKeyboardEvent(NSEvent *event, NSView *view)
36 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event, view))
37 , m_nativeEvent(event)
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.9.5/Chess-310.5/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.9.5/WebKit-7537.78.2/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.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/persist/evolve/
H A DEvolveListener.java24 boolean evolveProgress(EvolveEvent event); argument
/macosx-10.9.5/bind9-45.100/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.9.5/ntp-88/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.9.5/emacs-92/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 137 milliseconds

1234567891011>>