Searched refs:evt (Results 1 - 25 of 75) sorted by relevance

123

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DEventListener.idl28 void handleEvent(Event evt);
H A DMessagePort.idl53 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgevent.py11 evt = CGEventCreateMouseEvent(None, kCGEventLeftMouseDown, (80, 90), kCGMouseButtonLeft)
12 self.assertIsInstance(evt, CGEventRef)
15 v = CGEventCreateSourceFromEvent(evt)
21 CGEventSetSource(evt, src)
23 t = CGEventGetType(evt)
27 CGEventSetType(evt, kCGEventOtherMouseUp)
28 t = CGEventGetType(evt)
31 v = CGEventGetTimestamp(evt)
34 CGEventSetTimestamp(evt, 99)
35 v = CGEventGetTimestamp(evt)
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgevent.py14 evt = CGEventCreate(None)
15 self.failUnlessIsInstance(evt, CGEventRef)
18 dta = CGEventCreateData(None, evt)
26 evt = CGEventCreateMouseEvent(None, kCGEventOtherMouseDown, (0, 0), 2)
27 self.failUnlessIsInstance(evt, CGEventRef)
31 evt = CGEventCreateKeyboardEvent(None, 45, False)
32 self.failUnlessIsInstance(evt, CGEventRef)
35 evt = CGEventCreateScrollWheelEvent(None, kCGScrollEventUnitPixel, 2, 99, 44)
36 self.failUnlessIsInstance(evt, CGEventRef)
40 v = CGEventCreateCopy(evt)
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/cpp/
H A DWebDOMEventListenerCustom.cpp27 void WebDOMEventListener::handleEvent(const WebDOMEvent& evt) argument
32 impl()->handleEvent(0, toWebCore(evt));
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DAbstractWorker.idl48 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/ruby-104/ruby/lib/rexml/validation/
H A Drelaxng.rb204 @references[ arry[ind].to_s ].each{ |evt|
205 add_event_to_arry(new_events,evt)
210 def add_event_to_arry( arry, evt )
211 evt = generate_event( evt )
212 if evt.kind_of? String
213 arry[-1].event_arg = evt if arry[-1].kind_of? Event and @value
216 arry << evt
222 evt = nil
228 evt
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLLabelElement.cpp122 void HTMLLabelElement::defaultEventHandler(Event* evt) argument
126 if (evt->type() == eventNames().clickEvent && !processingClick) {
131 if (!element || (evt->target() && element->containsIncludingShadowDOM(evt->target()->toNode())))
137 element->dispatchSimulatedClick(evt);
144 evt->setDefaultHandled();
147 HTMLElement::defaultEventHandler(evt);
H A DMediaController.idl59 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Pong/
H A DPlayingView.rb19 def mouseDragged(evt)
20 @appCtrl.mouseDragged(evt)
/macosx-10.9.5/WebCore-7537.78.1/Modules/networkinfo/
H A DNetworkInfoConnection.idl41 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/
H A DTestEventTarget.idl43 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/WebCore-7537.78.1/html/track/
H A DTextTrackList.idl44 [RaisesException] boolean dispatchEvent(Event evt);
H A DAudioTrackList.idl47 [RaisesException] boolean dispatchEvent(Event evt);
H A DVideoTrackList.idl47 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextInsertionBaseCommand.cpp66 RefPtr<BeforeTextInsertedEvent> evt = BeforeTextInsertedEvent::create(text); local
67 startNode->rootEditableElement()->dispatchEvent(evt, IGNORE_EXCEPTION);
68 newText = evt->text();
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollbar.cpp350 bool Scrollbar::gestureEvent(const PlatformGestureEvent& evt) argument
353 switch (evt.type()) {
355 setPressedPart(theme()->hitTest(this, evt.position()));
356 m_pressedPos = (orientation() == HorizontalScrollbar ? convertFromContainingWindow(evt.position()).x() : convertFromContainingWindow(evt.position()).y());
368 m_scrollPos += HorizontalScrollbar ? evt.deltaX() : evt.deltaY();
389 bool Scrollbar::mouseMoved(const PlatformMouseEvent& evt) argument
392 if (theme()->shouldSnapBackToDragOrigin(this, evt)) {
397 convertFromContainingWindow(evt
460 mouseDown(const PlatformMouseEvent& evt) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/ObjC/
H A DDOMTestEventTarget.h40 - (BOOL)dispatchEvent:(DOMEvent *)evt;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/qt/
H A DWebPageQt.cpp189 const char* WebPage::interpretKeyEvent(const KeyboardEvent* evt) argument
191 ASSERT(evt->type() == eventNames().keydownEvent || evt->type() == eventNames().keypressEvent);
208 if (evt->shiftKey())
210 if (evt->altKey())
212 if (evt->ctrlKey())
215 if (evt->type() == eventNames().keydownEvent) {
216 int mapKey = modifiers << 16 | evt->keyEvent()->windowsVirtualKeyCode();
220 int mapKey = modifiers << 16 | evt->charCode();
/macosx-10.9.5/WebCore-7537.78.1/Modules/encryptedmedia/
H A DMediaKeySession.idl54 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBRequest.idl57 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/CPP/
H A DWebDOMTestEventTarget.cpp76 bool WebDOMTestEventTarget::dispatchEvent(const WebDOMEvent& evt) argument
82 bool result = impl()->dispatchEvent(toWebCore(evt), ec);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DFontLoader.idl56 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DEventSource.idl65 [RaisesException] boolean dispatchEvent(Event evt);
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXMLHttpRequestUpload.idl50 [RaisesException] boolean dispatchEvent(Event evt);

Completed in 237 milliseconds

123