HomeSort by relevance Sort by last modified time
    Searched refs:platformEvent (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
WebEditorClientGtk.cpp 71 const PlatformKeyboardEvent* platformEvent = event->keyEvent();
72 if (!platformEvent)
82 if (platformEvent->type() == PlatformKeyboardEvent::RawKeyDown) {
107 frame->editor()->insertText(platformEvent->text(), event);
116 if (platformEvent->ctrlKey() || platformEvent->altKey())
119 if (frame->editor()->insertText(platformEvent->text(), event))
  /external/webkit/Source/WebCore/dom/
KeyboardEvent.h 61 static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* view)
63 return adoptRef(new KeyboardEvent(platformEvent, view));
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 709 const PlatformKeyboardEvent* platformEvent = event->keyEvent();
710 if (!platformEvent)
719 if (platformEvent->type() == PlatformKeyboardEvent::RawKeyDown) {
758 if (platformEvent->ctrlKey() || platformEvent->altKey())
761 if (frame->editor()->insertText(platformEvent->text(), event))
    [all...]
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 647 const PlatformKeyboardEvent* platformEvent = event->keyEvent();
648 int keyCode = platformEvent->nativeVirtualKeyCode();
650 const String text = platformEvent->text();
659 text.ascii().data(), platformEvent->unmodifiedText().ascii().data(),
660 platformEvent->keyIdentifier().ascii().data());
  /external/webkit/Source/WebCore/page/mac/
EventHandlerMac.mm 129 PlatformKeyboardEvent platformEvent(event);
130 platformEvent.disambiguateKeyDownEvent(PlatformKeyboardEvent::RawKeyDown);
131 return KeyboardEvent::create(platformEvent, m_frame->document()->defaultView());
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 172 const PlatformKeyboardEvent* platformEvent = event->keyEvent();
173 if (!platformEvent)
177 if ([platformEvent->macEvent() type] == NSFlagsChanged)
208 if (!haveTextInsertionCommands || platformEvent->type() == PlatformKeyboardEvent::Char) {
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp 574 PlatformWheelEventBuilder platformEvent(mainFrameImpl()->frameView(), event);
575 return mainFrameImpl()->frame()->eventHandler()->handleWheelEvent(platformEvent);
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebview.cpp 812 PlatformMouseEvent platformEvent(event);
813 platformEvent.setClickCount(priv->currentClickCount);
814 priv->previousClickPoint = platformEvent.pos();
825 gboolean result = frame->eventHandler()->handleMousePressEvent(platformEvent);
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLView.mm     [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 737 milliseconds