HomeSort by relevance Sort by last modified time
    Searched refs:PlatformKeyboardEvent (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/webkit/WebCore/platform/
PlatformKeyboardEvent.h 68 class PlatformKeyboardEvent : public FastAllocBase {
133 PlatformKeyboardEvent();
134 PlatformKeyboardEvent(NSEvent*);
139 PlatformKeyboardEvent(HWND, WPARAM, LPARAM, Type, bool);
143 PlatformKeyboardEvent(GdkEventKey*);
148 PlatformKeyboardEvent(int keyCode, UChar32 unichar, int repeatCount,
155 PlatformKeyboardEvent(QKeyEvent*);
160 PlatformKeyboardEvent(wxKeyEvent&);
164 PlatformKeyboardEvent(BMessage*);
  /external/webkit/WebCore/platform/chromium/
FramelessScrollView.h 39 class PlatformKeyboardEvent;
62 virtual bool handleKeyEvent(const PlatformKeyboardEvent&) = 0;
PlatformKeyboardEventChromium.cpp 28 #include "PlatformKeyboardEvent.h"
40 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool backwardCompatibilityMode)
72 bool PlatformKeyboardEvent::currentCapsLockState()
PopupMenuChromium.h 131 virtual bool handleKeyEvent(const PlatformKeyboardEvent&);
  /external/webkit/WebCore/dom/
KeyboardEvent.cpp 31 #include "PlatformKeyboardEvent.h"
36 static inline const AtomicString& eventTypeForKeyboardEventType(PlatformKeyboardEvent::Type type)
39 case PlatformKeyboardEvent::KeyUp:
41 case PlatformKeyboardEvent::RawKeyDown:
43 case PlatformKeyboardEvent::Char:
45 case PlatformKeyboardEvent::KeyDown:
60 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* view)
63 , m_keyEvent(new PlatformKeyboardEvent(key))
KeyboardEvent.h 32 class PlatformKeyboardEvent;
58 static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* view)
82 const PlatformKeyboardEvent* keyEvent() const { return m_keyEvent.get(); }
97 KeyboardEvent(const PlatformKeyboardEvent&, AbstractView*);
102 OwnPtr<PlatformKeyboardEvent> m_keyEvent;
  /external/webkit/WebCore/platform/win/
KeyEventWin.cpp 27 #include "PlatformKeyboardEvent.h"
145 static bool isKeypadEvent(WPARAM code, LPARAM keyData, PlatformKeyboardEvent::Type type)
147 if (type != PlatformKeyboardEvent::RawKeyDown && type != PlatformKeyboardEvent::KeyUp)
189 PlatformKeyboardEvent::PlatformKeyboardEvent(HWND, WPARAM code, LPARAM keyData, Type type, bool systemKey)
206 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type, bool)
212 bool PlatformKeyboardEvent::currentCapsLockState()
  /external/webkit/WebCore/platform/haiku/
PlatformKeyboardEventHaiku.cpp 30 #include "PlatformKeyboardEvent.h"
150 PlatformKeyboardEvent::PlatformKeyboardEvent(BMessage* message)
172 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool)
186 bool PlatformKeyboardEvent::currentCapsLockState()
  /external/webkit/WebKit/chromium/tests/
KeyboardTest.cpp 55 PlatformKeyboardEvent::Type keyType)
88 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::RawKeyDown);
96 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::RawKeyDown);
104 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::Char);
112 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::Char);
172 PlatformKeyboardEvent::RawKeyDown);
  /external/webkit/WebKit/chromium/src/
WebInputEventConversion.h 38 #include "PlatformKeyboardEvent.h"
68 class PlatformKeyboardEventBuilder : public WebCore::PlatformKeyboardEvent {
WebInputEventConversion.cpp 38 #include "PlatformKeyboardEvent.h"
106 static inline const PlatformKeyboardEvent::Type toPlatformKeyboardEventType(WebInputEvent::Type type)
110 return PlatformKeyboardEvent::KeyUp;
112 return PlatformKeyboardEvent::KeyDown;
114 return PlatformKeyboardEvent::RawKeyDown;
116 return PlatformKeyboardEvent::Char;
120 return PlatformKeyboardEvent::KeyDown;
WebAccessibilityObject.cpp 37 #include "PlatformKeyboardEvent.h"
340 if (modifiers & PlatformKeyboardEvent::CtrlKey)
342 if (modifiers & PlatformKeyboardEvent::AltKey)
344 if (modifiers & PlatformKeyboardEvent::ShiftKey)
346 if (modifiers & PlatformKeyboardEvent::MetaKey)
WebPopupMenuImpl.h 49 class PlatformKeyboardEvent;
  /external/webkit/WebCore/page/chromium/
EventHandlerChromium.cpp 42 #include "PlatformKeyboardEvent.h"
151 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;
153 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebCore/platform/android/
KeyEventAndroid.cpp 32 #include "PlatformKeyboardEvent.h"
213 PlatformKeyboardEvent::PlatformKeyboardEvent(int keyCode, UChar32 unichar,
248 bool PlatformKeyboardEvent::currentCapsLockState()
254 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool backwardCompatibilityMode)
  /external/webkit/WebCore/platform/wx/
KeyboardEventWx.cpp 27 #include "PlatformKeyboardEvent.h"
338 PlatformKeyboardEvent::PlatformKeyboardEvent(wxKeyEvent& event)
372 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool)
386 bool PlatformKeyboardEvent::currentCapsLockState()
  /external/webkit/WebCore/platform/gtk/
KeyEventGtk.cpp 31 #include "PlatformKeyboardEvent.h"
548 PlatformKeyboardEvent::PlatformKeyboardEvent(GdkEventKey* event)
565 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool backwardCompatibilityMode)
583 bool PlatformKeyboardEvent::currentCapsLockState()
589 GdkEventKey* PlatformKeyboardEvent::gdkEventKey() const
  /external/webkit/WebCore/page/android/
EventHandlerAndroid.cpp 36 #include "PlatformKeyboardEvent.h"
119 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebCore/page/gtk/
EventHandlerGtk.cpp 38 #include "PlatformKeyboardEvent.h"
122 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebCore/page/qt/
EventHandlerQt.cpp 47 #include "PlatformKeyboardEvent.h"
135 return PlatformKeyboardEvent::CtrlKey;
  /external/webkit/WebCore/page/win/
EventHandlerWin.cpp 40 #include "PlatformKeyboardEvent.h"
116 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebCore/page/wx/
EventHandlerWx.cpp 37 #include "PlatformKeyboardEvent.h"
124 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 40 #include "PlatformKeyboardEvent.h"
380 const PlatformKeyboardEvent* keyEvent = event->keyEvent();
388 if (keyEvent->type() == PlatformKeyboardEvent::RawKeyDown) {
407 ASSERT(evt->keyEvent()->type() == PlatformKeyboardEvent::RawKeyDown || evt->keyEvent()->type() == PlatformKeyboardEvent::Char);
431 if (evt->keyEvent()->type() == PlatformKeyboardEvent::RawKeyDown) {
  /external/webkit/WebCore/page/haiku/
EventHandlerHaiku.cpp 41 #include "PlatformKeyboardEvent.h"
147 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebCore/platform/qt/
PlatformKeyboardEventQt.cpp 29 #include "PlatformKeyboardEvent.h"
504 PlatformKeyboardEvent::PlatformKeyboardEvent(QKeyEvent* event)
522 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool)
546 bool PlatformKeyboardEvent::currentCapsLockState()

Completed in 1794 milliseconds

1 2 3