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

12

/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DKeyBindingTranslator.h34 enum EventType { KeyDown, KeyPress }; enumerator in enum:WebCore::KeyBindingTranslator::EventType
H A DPlatformKeyboardEventGtk.cpp555 return event->type == GDK_KEY_RELEASE ? PlatformEvent::KeyUp : PlatformEvent::KeyDown;
594 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
595 ASSERT(m_type == KeyDown);
H A DKeyBindingTranslator.cpp236 HashMap<int, const char*>* commandMap = type == KeyDown ? &keyDownCommandsMap : &keyPressCommandsMap;
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DPlatformKeyboardEventEfl.cpp43 : PlatformEvent(PlatformEvent::KeyDown, evas_key_modifier_is_set(event->modifiers, "Shift"), evas_key_modifier_is_set(event->modifiers, "Control"), evas_key_modifier_is_set(event->modifiers, "Alt"), evas_key_modifier_is_set(event->modifiers, "Meta"), currentTime())
72 ASSERT(m_type == KeyDown);
/macosx-10.10/WebCore-7600.1.25/platform/ios/
H A DKeyEventIOS.mm39 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
40 ASSERT(m_type == KeyDown);
H A DPlatformEventFactoryIOS.mm139 m_type = (event.type == WebEventKeyUp ? PlatformEvent::KeyUp : PlatformEvent::KeyDown);
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DKeyEventMac.mm42 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
43 ASSERT(m_type == KeyDown);
H A DPlatformEventFactoryMac.mm471 m_type = isKeyUpEvent(event) ? PlatformEvent::KeyUp : PlatformEvent::KeyDown;
/macosx-10.10/WebCore-7600.1.25/platform/
H A DPlatformEvent.h37 KeyDown,
H A DPlatformKeyboardEvent.h60 : PlatformEvent(PlatformEvent::KeyDown)
93 void disambiguateKeyDownEvent(Type, bool backwardCompatibilityMode = false); // Only used on platforms that need it, i.e. those that generate KeyDown events.
/macosx-10.10/WebKit2-7600.1.25/Shared/ios/
H A DWebIOSEventFactory.mm53 WebKit::WebEvent::Type type = (event.type == WebEventKeyUp) ? WebKit::WebEvent::KeyUp : WebKit::WebEvent::KeyDown;
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DWebKeyboardEvent.cpp134 return type == RawKeyDown || type == KeyDown || type == KeyUp || type == Char;
H A DWebEventConversion.cpp153 case WebEvent::KeyDown:
154 m_type = WebCore::PlatformEvent::KeyDown;
H A DWebEvent.h66 KeyDown, enumerator in enum:WebKit::WebEvent::Type
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/gtk/
H A DWebPageGtk.cpp91 if (keyboardEvent.type() != WebEvent::KeyDown && keyboardEvent.type() != WebEvent::RawKeyDown)
/macosx-10.10/WebCore-7600.1.25/dom/
H A DKeyboardEvent.cpp45 case PlatformEvent::KeyDown:
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/efl/
H A DWebPageEfl.cpp86 if (keyboardEvent.type() != WebEvent::KeyDown && keyboardEvent.type() != WebEvent::RawKeyDown)
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/x11/
H A DNetscapePluginX11.cpp493 case WebEvent::KeyDown:
574 xEvent.xany.type = (webEvent.type() == WebEvent::KeyDown) ? kKeyPressType : kKeyReleaseType;
595 ASSERT(event.type() == WebEvent::KeyDown || event.type() == WebEvent::KeyUp);
/macosx-10.10/WebKit2-7600.1.25/Shared/efl/
H A DWebEventFactory.cpp183 return WebKeyboardEvent(WebEvent::KeyDown,
/macosx-10.10/WebKit2-7600.1.25/Shared/gtk/
H A DWebEventFactory.cpp193 return WebKeyboardEvent((event->type == GDK_KEY_RELEASE) ? WebEvent::KeyUp : WebEvent::KeyDown,
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/mac/
H A DNetscapePluginMac.mm763 case WebEvent::KeyDown:
791 if (keyboardEvent.type() == WebEvent::KeyDown) {
825 case WebEvent::KeyDown:
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DPageClientImpl.cpp61 KeyBindingTranslator::KeyDown : KeyBindingTranslator::KeyPress;
/macosx-10.10/WebKit2-7600.1.25/Shared/mac/
H A DWebEventFactory.mm411 WebEvent::Type type = isKeyUpEvent(event) ? WebEvent::KeyUp : WebEvent::KeyDown;
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/PDF/
H A DPDFPlugin.mm1267 case WebEvent::KeyDown:
1491 case WebEvent::KeyDown:
/macosx-10.10/vim-55/runtime/syntax/
H A Dvb.vim80 syn keyword vbEvents ItemSeletected KeyDown KeyPress KeyUp LeaveCell

Completed in 227 milliseconds

12