Searched refs:KeyDown (Results 1 - 25 of 44) sorted by relevance

12

/external/quake/quake/src/WinQuake/
H A Dcl_input.cpp58 void KeyDown (kbutton_t *b) function
117 void IN_KLookDown (void) {KeyDown(&in_klook);}
119 void IN_MLookDown (void) {KeyDown(&in_mlook);}
125 void IN_UpDown(void) {KeyDown(&in_up);}
127 void IN_DownDown(void) {KeyDown(&in_down);}
129 void IN_LeftDown(void) {KeyDown(&in_left);}
131 void IN_RightDown(void) {KeyDown(&in_right);}
133 void IN_ForwardDown(void) {KeyDown(&in_forward);}
135 void IN_BackDown(void) {KeyDown(&in_back);}
137 void IN_LookupDown(void) {KeyDown(
[all...]
/external/quake/quake/src/QW/client/
H A Dcl_input.c57 void KeyDown (kbutton_t *b) function
116 void IN_KLookDown (void) {KeyDown(&in_klook);}
118 void IN_MLookDown (void) {KeyDown(&in_mlook);}
124 void IN_UpDown(void) {KeyDown(&in_up);}
126 void IN_DownDown(void) {KeyDown(&in_down);}
128 void IN_LeftDown(void) {KeyDown(&in_left);}
130 void IN_RightDown(void) {KeyDown(&in_right);}
132 void IN_ForwardDown(void) {KeyDown(&in_forward);}
134 void IN_BackDown(void) {KeyDown(&in_back);}
136 void IN_LookupDown(void) {KeyDown(
[all...]
/external/chromium/chrome/browser/ui/views/
H A Ddropdown_bar_host_gtk.cc39 wke.type = WebKit::WebInputEvent::KeyDown;
/external/webkit/Source/WebCore/platform/iphone/
H A DKeyEventIPhone.mm52 : m_type(event.type == WebEventKeyUp ? PlatformKeyboardEvent::KeyUp : PlatformKeyboardEvent::KeyDown)
89 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
90 ASSERT(m_type == KeyDown);
/external/webkit/Source/WebKit/chromium/public/
H A DWebInputEvent.h80 // TODO(hbono): Issue 18064: remove the KeyDown type since it isn't
99 KeyDown, enumerator in enum:WebKit::WebInputEvent::Type
155 || type == KeyDown
/external/webkit/Source/WebCore/platform/chromium/
H A DPlatformKeyboardEventChromium.cpp47 // No KeyDown events on Windows to disambiguate.
50 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
51 ASSERT(m_type == KeyDown);
/external/webkit/Source/WebKit2/Shared/
H A DWebKeyboardEvent.cpp69 return type == RawKeyDown || type == KeyDown || type == KeyUp || type == Char;
H A DWebEventConversion.cpp132 case WebEvent::KeyDown:
133 m_type = PlatformKeyboardEvent::KeyDown;
/external/webkit/Source/WebKit/chromium/src/
H A DWebInputEventConversion.cpp112 case WebInputEvent::KeyDown:
113 return PlatformKeyboardEvent::KeyDown;
121 return PlatformKeyboardEvent::KeyDown;
144 // we need to convert KeyDown to RawKeydown and Char events
146 ASSERT(m_type == KeyDown);
326 type = KeyDown;
/external/webkit/Source/WebCore/platform/
H A DPlatformKeyboardEvent.h82 // KeyDown is sent by platforms such as Mac OS X, gtk and Qt, and has information about both physical pressed key, and its translation.
84 KeyDown, enumerator in enum:WebCore::PlatformKeyboardEvent::Type
103 : m_type(KeyDown)
125 void disambiguateKeyDownEvent(Type, bool backwardCompatibilityMode = false); // Only used on platforms that need it, i.e. those that generate KeyDown events.
/external/webkit/Source/WebCore/platform/android/
H A DKeyEventAndroid.cpp215 : m_type(down ? KeyDown : KeyUp)
266 ASSERT(m_type == KeyDown);
/external/webkit/Source/WebCore/platform/wx/
H A DKeyboardEventWx.cpp342 m_type = KeyDown;
373 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
374 ASSERT(m_type == KeyDown);
/external/webkit/Source/WebCore/platform/mac/
H A DKeyEventMac.mm192 : m_type(isKeyUpEvent(event) ? PlatformKeyboardEvent::KeyUp : PlatformKeyboardEvent::KeyDown)
227 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
228 ASSERT(m_type == KeyDown);
/external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
H A DWebPageGtk.cpp62 if (keyboardEvent.type() != WebEvent::KeyDown && keyboardEvent.type() != WebEvent::RawKeyDown)
/external/webkit/Source/WebCore/dom/
H A DKeyboardEvent.cpp46 case PlatformKeyboardEvent::KeyDown:
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformKeyboardEventEfl.cpp192 : m_type(KeyDown)
227 ASSERT(m_type == KeyDown);
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformKeyboardEventGtk.cpp550 : m_type((event->type == GDK_KEY_RELEASE) ? KeyUp : KeyDown)
568 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
569 ASSERT(m_type == KeyDown);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DAbstractComboPropertyEditor.java70 m_combo.addListener(SWT.KeyDown, new Listener() {
H A DAbstractTextPropertyEditor.java186 postKeyEvent(SWT.KeyDown, event);
192 * Posts low-level {@link SWT.KeyDown} or {@link SWT.KeyUp} event.
/external/webkit/Source/WebKit/chromium/tests/
H A DKeyboardTest.cpp71 keyboardEvent->type = WebInputEvent::KeyDown;
/external/webkit/Source/WebKit2/Shared/gtk/
H A DWebEventFactory.cpp176 return WebKeyboardEvent((event->type == GDK_KEY_RELEASE) ? WebEvent::KeyUp : WebEvent::KeyDown,
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
H A DNetscapePluginX11.cpp398 xEvent.xany.type = (webEvent.type() == WebEvent::KeyDown) ? kKeyPressType : kKeyReleaseType;
419 ASSERT(event.type() == WebEvent::KeyDown || event.type() == WebEvent::KeyUp);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCComboBox.java169 notifyListeners(SWT.KeyDown, convert2event(e));
181 notifyListeners(SWT.KeyDown, convert2event(e));
199 notifyListeners(SWT.KeyDown, convert2event(e));
H A DCCombo3.java61 SWT.KeyDown,
190 case SWT.KeyDown : {
273 * Resends KeyDown/KeyUp events.
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformKeyboardEventQt.cpp584 m_type = (event->type() == QEvent::KeyRelease) ? KeyUp : KeyDown;
601 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
602 ASSERT(m_type == KeyDown);

Completed in 387 milliseconds

12