HomeSort by relevance Sort by last modified time
    Searched full:keyboardevent (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/core/events/
KeyboardEvent.cpp 24 #include "core/events/KeyboardEvent.h"
67 static inline KeyboardEvent::KeyLocationCode keyLocationCode(const PlatformKeyboardEvent& key)
70 return KeyboardEvent::DOM_KEY_LOCATION_NUMPAD;
77 return KeyboardEvent::DOM_KEY_LOCATION_LEFT;
82 return KeyboardEvent::DOM_KEY_LOCATION_RIGHT;
84 return KeyboardEvent::DOM_KEY_LOCATION_STANDARD;
98 KeyboardEvent::KeyboardEvent()
104 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* view
    [all...]
KeyboardEvent.h 48 class KeyboardEvent FINAL : public UIEventWithKeyState {
58 static PassRefPtrWillBeRawPtr<KeyboardEvent> create()
60 return adoptRefWillBeNoop(new KeyboardEvent);
63 static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* view)
65 return adoptRefWillBeNoop(new KeyboardEvent(platformEvent, view));
68 static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const AtomicString& type, const KeyboardEventInit& initializer)
70 return adoptRefWillBeNoop(new KeyboardEvent(type, initializer));
73 static PassRefPtrWillBeRawPtr<KeyboardEvent> create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view,
77 return adoptRefWillBeNoop(new KeyboardEvent(type, canBubble, cancelable, view, keyIdentifier, location,
81 virtual ~KeyboardEvent();
    [all...]
EventAliases.in 5 KeyboardEvents ImplementedAs=KeyboardEvent
  /external/chromium_org/third_party/WebKit/Source/web/tests/
KeyboardTest.cpp 38 #include "core/events/KeyboardEvent.h"
60 RefPtrWillBeRawPtr<KeyboardEvent> keyboardEvent = KeyboardEvent::create(evt, 0);
63 return behavior.interpretKeyEvent(*keyboardEvent);
67 void setupKeyDownEvent(WebKeyboardEvent* keyboardEvent,
71 keyboardEvent->windowsKeyCode = keyCode;
72 keyboardEvent->modifiers = modifiers;
73 keyboardEvent->type = WebInputEvent::KeyDown;
74 keyboardEvent->text[0] = keyCode
    [all...]
WebInputEventFactoryTestMac.mm 36 #include "core/events/KeyboardEvent.h"
74 WebKeyboardEvent webEvent = WebInputEventFactory::keyboardEvent(macEvent);
79 webEvent = WebInputEventFactory::keyboardEvent(macEvent);
84 webEvent = WebInputEventFactory::keyboardEvent(macEvent);
89 webEvent = WebInputEventFactory::keyboardEvent(macEvent);
120 WebKeyboardEvent webEvent = WebInputEventFactory::keyboardEvent(macEvent);
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_engine_interface.cc 9 InputMethodEngineInterface::KeyboardEvent::KeyboardEvent()
16 InputMethodEngineInterface::KeyboardEvent::~KeyboardEvent() {
input_method_engine_interface.h 26 struct KeyboardEvent {
27 KeyboardEvent();
28 virtual ~KeyboardEvent();
151 const KeyboardEvent& event,
194 const std::vector<KeyboardEvent>& events) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseClickableWithKeyInputType.h 41 static void handleKeydownEvent(HTMLInputElement&, KeyboardEvent*);
42 static void handleKeypressEvent(HTMLInputElement&, KeyboardEvent*);
43 static void handleKeyupEvent(InputType&, KeyboardEvent*);
50 virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
51 virtual void handleKeypressEvent(KeyboardEvent*) OVERRIDE;
52 virtual void handleKeyupEvent(KeyboardEvent*) OVERRIDE;
BaseClickableWithKeyInputType.cpp 35 #include "core/events/KeyboardEvent.h"
42 void BaseClickableWithKeyInputType::handleKeydownEvent(HTMLInputElement& element, KeyboardEvent* event)
52 void BaseClickableWithKeyInputType::handleKeypressEvent(HTMLInputElement& element, KeyboardEvent* event)
66 void BaseClickableWithKeyInputType::handleKeyupEvent(InputType& inputType, KeyboardEvent* event)
81 void BaseClickableWithKeyInputType::handleKeydownEvent(KeyboardEvent* event)
86 void BaseClickableWithKeyInputType::handleKeypressEvent(KeyboardEvent* event)
91 void BaseClickableWithKeyInputType::handleKeyupEvent(KeyboardEvent* event)
BaseChooserOnlyDateAndTimeInputType.h 50 virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
51 virtual void handleKeypressEvent(KeyboardEvent*) OVERRIDE;
52 virtual void handleKeyupEvent(KeyboardEvent*) OVERRIDE;
InputTypeView.h 52 class KeyboardEvent;
86 virtual void handleKeydownEvent(KeyboardEvent*);
87 virtual void handleKeypressEvent(KeyboardEvent*);
88 virtual void handleKeyupEvent(KeyboardEvent*);
RadioInputType.h 48 virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
49 virtual void handleKeyupEvent(KeyboardEvent*) OVERRIDE;
TypeAhead.h 35 class KeyboardEvent;
58 int handleEvent(KeyboardEvent*, MatchModeFlags);
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeFieldElement.cpp 33 #include "core/events/KeyboardEvent.h"
65 KeyboardEvent* keyboardEvent = toKeyboardEvent(event);
67 handleKeyboardEvent(keyboardEvent);
68 if (keyboardEvent->defaultHandled()) {
74 defaultKeyboardEventHandler(keyboardEvent);
77 if (keyboardEvent->defaultHandled())
84 void DateTimeFieldElement::defaultKeyboardEventHandler(KeyboardEvent* keyboardEvent)
86 if (keyboardEvent->type() != EventTypeNames::keydown
    [all...]
DateTimeSymbolicFieldElement.cpp 30 #include "core/events/KeyboardEvent.h"
73 void DateTimeSymbolicFieldElement::handleKeyboardEvent(KeyboardEvent* keyboardEvent)
75 if (keyboardEvent->type() != EventTypeNames::keypress)
78 const UChar charCode = WTF::Unicode::toLower(keyboardEvent->charCode());
82 keyboardEvent->setDefaultHandled();
84 int index = m_typeAhead.handleEvent(keyboardEvent, TypeAhead::MatchPrefix | TypeAhead::CycleFirstChar | TypeAhead::MatchIndex);
  /external/chromium_org/third_party/WebKit/ManualTests/forms/
calendar-picker-crash-by-type-change.html 5 var event = document.createEvent('KeyboardEvent')
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
KeyboardShortcut.js 145 * @param {?KeyboardEvent} keyboardEvent
148 WebInspector.KeyboardShortcut.makeKeyFromEvent = function(keyboardEvent)
151 if (keyboardEvent.shiftKey)
153 if (keyboardEvent.ctrlKey)
155 if (keyboardEvent.altKey)
157 if (keyboardEvent.metaKey)
161 var keyCode = keyboardEvent.keyCode || keyboardEvent["__keyCode"];
166 * @param {?KeyboardEvent} keyboardEven
    [all...]
  /external/chromium_org/content/browser/renderer_host/
native_web_keyboard_event_mac.mm 21 : WebKeyboardEvent(WebInputEventFactory::keyboardEvent(native_event)),
29 : WebKeyboardEvent(WebInputEventFactory::keyboardEvent(character,
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaDocument.cpp 34 #include "core/events/KeyboardEvent.h"
147 KeyboardEvent* keyboardEvent = toKeyboardEvent(event);
148 if (keyboardEvent->keyIdentifier() == "U+0020" || keyboardEvent->keyCode() == VKEY_MEDIA_PLAY_PAUSE) {
  /external/chromium_org/chrome/browser/resources/chromeos/keyboard/
keyboard_utils.js 16 event = /** @type {KeyboardEvent} */(event);
36 event = /** @type {KeyboardEvent} */(event);
64 var event = document.createEvent('KeyboardEvent');
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditorKeyBindings.cpp 30 #include "core/events/KeyboardEvent.h"
37 bool Editor::handleEditingKeyboardEvent(KeyboardEvent* evt)
67 void Editor::handleKeyboardEvent(KeyboardEvent* evt)
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
accounts_options_browsertest.js 17 return new KeyboardEvent(type, {
  /external/chromium_org/chrome/browser/ui/webui/options/
cookies_view_browsertest.js 30 searchBox.dispatchEvent(new KeyboardEvent('keydown', {
  /external/chromium_org/third_party/WebKit/Source/core/
event_idl_files_list.tmp 13 events/KeyboardEvent.idl
  /external/chromium_org/third_party/WebKit/public/web/mac/
WebInputEventFactory.h 53 BLINK_EXPORT static WebKeyboardEvent keyboardEvent(NSEvent*);
54 BLINK_EXPORT static WebKeyboardEvent keyboardEvent(wchar_t character, int modifiers, double timeStampSeconds);

Completed in 988 milliseconds

1 2 3 4 5 6 7 8 910