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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditorKeyBindings.cpp 44 static const unsigned ShiftKey = 1 << 2;
78 { VKEY_LEFT, ShiftKey, "MoveLeftAndModifySelection" },
81 { VKEY_LEFT, OptionKey | ShiftKey,
85 { VKEY_LEFT, CtrlKey | ShiftKey,
89 { VKEY_RIGHT, ShiftKey, "MoveRightAndModifySelection" },
92 { VKEY_RIGHT, OptionKey | ShiftKey, "MoveWordRightAndModifySelection" },
95 { VKEY_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
98 { VKEY_UP, ShiftKey, "MoveUpAndModifySelection" },
99 { VKEY_PRIOR, ShiftKey, "MovePageUpAndModifySelection" },
101 { VKEY_DOWN, ShiftKey, "MoveDownAndModifySelection" }
    [all...]
  /external/chromium/chrome/browser/ui/views/
unhandled_keyboard_event_handler.cc 38 (event.modifiers & NativeWebKeyboardEvent::ShiftKey) ==
39 NativeWebKeyboardEvent::ShiftKey,
  /external/chromium_org/content/browser/renderer_host/
native_web_keyboard_event.cc 14 if (event.modifiers & NativeWebKeyboardEvent::ShiftKey)
native_web_keyboard_event_aura.cc 23 (flags & ui::EF_SHIFT_DOWN ? blink::WebInputEvent::ShiftKey : 0) |
web_input_event_aurax11.cc 128 webkit_event.modifiers & blink::WebInputEvent::ShiftKey);
ui_events_helper.cc 16 if (modifiers & blink::WebInputEvent::ShiftKey)
249 modifiers |= blink::WebInputEvent::ShiftKey;
ime_adapter_android.cc 62 blink::WebInputEvent::ShiftKey,
web_input_event_aura.cc 116 webkit_event.modifiers & blink::WebInputEvent::ShiftKey);
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformEvent.h 80 ShiftKey = 1 << 3,
85 bool shiftKey() const { return m_modifiers & ShiftKey; }
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
121 if (shiftKey)
122 m_modifiers |= ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
KeyboardTest.cpp 182 EXPECT_STREQ("InsertBacktab", interpretTab(WebInputEvent::ShiftKey));
197 EXPECT_STREQ("InsertLineBreak", interpretNewLine(WebInputEvent::ShiftKey));
207 int modifiers = WebInputEvent::AltKey | WebInputEvent::ShiftKey;
ChromeClientImplTest.cpp 151 int modifiers = WebInputEvent::ShiftKey;
160 int modifiers = WebInputEvent::ShiftKey;
200 modifiers |= WebInputEvent::ShiftKey;
214 modifiers |= WebInputEvent::ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 91 if (e.modifiers & WebInputEvent::ShiftKey)
92 m_modifiers |= PlatformEvent::ShiftKey;
142 if (e.modifiers & WebInputEvent::ShiftKey)
143 m_modifiers |= PlatformEvent::ShiftKey;
250 if (e.modifiers & WebInputEvent::ShiftKey)
251 m_modifiers |= PlatformEvent::ShiftKey;
291 if (e.modifiers & WebInputEvent::ShiftKey)
292 m_modifiers |= PlatformEvent::ShiftKey;
422 if (event.modifiers & WebInputEvent::ShiftKey)
423 m_modifiers |= PlatformEvent::ShiftKey;
    [all...]
WebInputEventFactoryWin.cpp 179 result.modifiers |= WebInputEvent::ShiftKey;
338 result.modifiers |= WebInputEvent::ShiftKey;
434 result.modifiers |= WebInputEvent::ShiftKey;
WebPluginScrollbarImpl.cpp 344 keyCode = ((keyboard.modifiers & WebInputEvent::ShiftKey) ? VKEY_PRIOR : VKEY_NEXT);
360 if (keyboard.isSystemKey || (keyboard.modifiers & WebInputEvent::ShiftKey))
WebInputEventFactoryGtk.cpp 103 modifiers |= WebInputEvent::ShiftKey;
397 result.windowsKeyCode, result.modifiers & WebInputEvent::ShiftKey);
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 143 ShiftKey = 1 << 0,
176 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_builders_win.cc 155 result.modifiers |= WebInputEvent::ShiftKey;
299 result.modifiers |= WebInputEvent::ShiftKey;
395 result.modifiers |= WebInputEvent::ShiftKey;
web_input_event_builders_gtk.cc 72 modifiers |= WebInputEvent::ShiftKey;
375 result.modifiers & WebInputEvent::ShiftKey);
  /external/chromium_org/content/browser/web_contents/
web_drag_dest_win.cc 51 modifier_state |= blink::WebInputEvent::ShiftKey;
web_drag_dest_gtk.cc 39 modifier_state |= blink::WebInputEvent::ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 179 convertedModifiers & PlatformEvent::ShiftKey,
  /external/chromium/chrome/browser/resources/keyboard/
main.js 262 function ShiftKey(aspect) {
268 ShiftKey.prototype = {
538 new ShiftKey(1.6),
549 new ShiftKey(1)
613 keyEvent['shiftKey'] = true;
  /external/chromium_org/content/public/test/
browser_test_utils.cc 297 modifiers |= blink::WebInputEvent::ShiftKey;
359 modifiers &= ~blink::WebInputEvent::ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.cpp 166 } else if (!strcmp(characters, "shiftKey") || !strcmp(characters, "rangeSelectionKey"))
167 event->modifiers |= WebInputEvent::ShiftKey;
205 if ((event.modifiers & ~WebKeyboardEvent::ShiftKey) != WebKeyboardEvent::MetaKey)
225 if (event.modifiers & WebKeyboardEvent::ShiftKey)
661 eventDown.modifiers |= WebInputEvent::ShiftKey;
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_browsertest.cc     [all...]

Completed in 385 milliseconds

1 2