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

1234567891011>>

/macosx-10.10.1/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.1/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)
H A DWebEventFactory.cpp101 WebMouseEvent WebEventFactory::createWebMouseEvent(const Evas_Event_Mouse_Down* event, const AffineTransform& toWebContent, const AffineTransform& toDeviceScreen) argument
103 IntPoint pos(event->canvas.x, event->canvas.y);
105 buttonForEvent(event->button),
111 clickCountForEvent(event->flags),
112 modifiersForEvent(event->modifiers),
113 convertMillisecondToSecond(event->timestamp));
116 WebMouseEvent WebEventFactory::createWebMouseEvent(const Evas_Event_Mouse_Up* event, const AffineTransform& toWebContent, const AffineTransform& toDeviceScreen) argument
118 IntPoint pos(event->canvas.x, event
131 createWebMouseEvent(const Evas_Event_Mouse_Move* event, const AffineTransform& toWebContent, const AffineTransform& toDeviceScreen) argument
146 createWebWheelEvent(const Evas_Event_Mouse_Wheel* event, const AffineTransform& toWebContent, const AffineTransform& toDeviceScreen) argument
180 createWebKeyboardEvent(const Evas_Event_Key_Down* event) argument
197 createWebKeyboardEvent(const Evas_Event_Key_Up* event) argument
265 createWebTouchEvent(const EwkTouchEvent* event, const AffineTransform& toWebContent) argument
[all...]
/macosx-10.10.1/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.1/screen-22/screen/
H A Dsched.h25 struct event struct
27 struct event *next;
28 void (*handler) __P((struct event *, char *));
/macosx-10.10.1/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)
H A DNativeWebKeyboardEventMac.mm38 NativeWebKeyboardEvent::NativeWebKeyboardEvent(NSEvent *event, bool handledByInputMethod, const Vector<KeypressCommand>& commands)
39 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event, handledByInputMethod, commands))
40 , m_nativeEvent(event)
/macosx-10.10.1/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.1/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.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/evolve/
H A DEvolveListener.java24 boolean evolveProgress(EvolveEvent event); argument
H A DEvolveInternal.java28 public static void updateEvent(EvolveEvent event, argument
32 event.update(entityClassName);
33 event.getStats().add(nRead, nConverted);
/macosx-10.10.1/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.1/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.1/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.1/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...]
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/
H A Dtask_test.c34 my_callback(isc_task_t *task, isc_event_t *event) { argument
36 char *name = event->ev_arg;
42 isc_event_free(&event);
46 my_shutdown(isc_task_t *task, isc_event_t *event) { argument
47 char *name = event->ev_arg;
50 isc_event_free(&event);
54 my_tick(isc_task_t *task, isc_event_t *event) { argument
55 char *name = event->ev_arg;
58 isc_event_free(&event);
66 isc_event_t *event; local
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rexml/parsers/
H A Dtreeparser.rb22 event = @parser.pull
23 #STDERR.puts "TREEPARSER GOT #{event.inspect}"
24 case event[0]
32 tag_stack.push(event[1])
33 el = @build_context = @build_context.add_element( event[1] )
34 event[2].each do |key, value|
43 @build_context[-1] << event[1]
46 Text.new(event[1], @build_context.whitespace, nil, true)
49 event[1].strip.size==0
54 c = Comment.new( event[
[all...]
H A Dstreamparser.rb16 event = @parser.pull
17 case event[0]
21 attrs = event[2].each do |n, v|
22 event[2][n] = @parser.unnormalize( v )
24 @listener.tag_start( event[1], attrs )
26 @listener.tag_end( event[1] )
28 normalized = @parser.unnormalize( event[1] )
31 @listener.instruction( *event[1,2] )
33 @listener.doctype( *event[1..-1] )
38 @listener.send( event[
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dhost_statistics.h34 * Definitions for host VM/event statistics data structures.
46 #define VM_STAT_INCR(event) \
48 OSAddAtomic64(1, (SInt64 *) (&(PROCESSOR_DATA(current_processor(), vm_stat).event))); \
51 #define VM_STAT_INCR_BY(event, amount) \
53 OSAddAtomic64((amount), (SInt64 *) (&(PROCESSOR_DATA(current_processor(), vm_stat).event))); \
/macosx-10.10.1/ruby-106/ruby/ext/psych/lib/psych/handlers/
H A Drecorder.rb6 # This handler will capture an event and record the event. Recorder events
32 EVENTS.each do |event|
33 define_method event do |*args|
34 @events << [event, args]

Completed in 296 milliseconds

1234567891011>>