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

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
EditorClientImpl.cpp 330 static const unsigned ShiftKey = 1 << 2;
361 { VKEY_LEFT, ShiftKey, "MoveLeftAndModifySelection" },
364 { VKEY_LEFT, OptionKey | ShiftKey,
368 { VKEY_LEFT, CtrlKey | ShiftKey,
372 { VKEY_RIGHT, ShiftKey, "MoveRightAndModifySelection" },
375 { VKEY_RIGHT, OptionKey | ShiftKey,
379 { VKEY_RIGHT, CtrlKey | ShiftKey,
383 { VKEY_UP, ShiftKey, "MoveUpAndModifySelection" },
384 { VKEY_PRIOR, ShiftKey, "MovePageUpAndModifySelection" },
386 { VKEY_DOWN, ShiftKey, "MoveDownAndModifySelection" }
    [all...]
WebInputEventConversion.cpp 82 if (e.modifiers & WebInputEvent::ShiftKey)
83 m_modifiers |= PlatformEvent::ShiftKey;
131 if (e.modifiers & WebInputEvent::ShiftKey)
132 m_modifiers |= PlatformEvent::ShiftKey;
228 if (e.modifiers & WebInputEvent::ShiftKey)
229 m_modifiers |= PlatformEvent::ShiftKey;
269 if (e.modifiers & WebInputEvent::ShiftKey)
270 m_modifiers |= PlatformEvent::ShiftKey;
399 if (event.modifiers & WebInputEvent::ShiftKey)
400 m_modifiers |= PlatformEvent::ShiftKey;
    [all...]
WebPluginScrollbarImpl.cpp 339 keyCode = ((keyboard.modifiers & WebInputEvent::ShiftKey) ? VKEY_PRIOR : VKEY_NEXT);
355 if (keyboard.isSystemKey || (keyboard.modifiers & WebInputEvent::ShiftKey))
  /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 ? WebKit::WebInputEvent::ShiftKey : 0) |
web_input_event_aurax11.cc 226 webkit_event.modifiers & WebKit::WebInputEvent::ShiftKey);
ui_events_helper.cc 16 if (modifiers & WebKit::WebInputEvent::ShiftKey)
242 modifiers |= WebKit::WebInputEvent::ShiftKey;
ime_adapter_android.cc 62 WebKit::WebInputEvent::ShiftKey,
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformEvent.h 78 ShiftKey = 1 << 3,
83 bool shiftKey() const { return m_modifiers & ShiftKey; }
114 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
119 if (shiftKey)
120 m_modifiers |= ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
KeyboardTest.cpp 183 EXPECT_STREQ("InsertBacktab", interpretTab(WebInputEvent::ShiftKey));
198 EXPECT_STREQ("InsertLineBreak", interpretNewLine(WebInputEvent::ShiftKey));
208 int modifiers = WebInputEvent::AltKey | WebInputEvent::ShiftKey;
ChromeClientImplTest.cpp 147 int modifiers = WebInputEvent::ShiftKey;
156 int modifiers = WebInputEvent::ShiftKey;
196 modifiers |= WebInputEvent::ShiftKey;
210 modifiers |= WebInputEvent::ShiftKey;
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 142 ShiftKey = 1 << 0,
175 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;
  /external/chromium_org/third_party/WebKit/Source/web/win/
WebInputEventFactory.cpp 180 result.modifiers |= WebInputEvent::ShiftKey;
329 result.modifiers |= WebInputEvent::ShiftKey;
425 result.modifiers |= WebInputEvent::ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/web/gtk/
WebInputEventFactory.cpp 102 modifiers |= WebInputEvent::ShiftKey;
403 result.windowsKeyCode, result.modifiers & WebInputEvent::ShiftKey);
  /external/chromium_org/content/browser/web_contents/
web_drag_dest_win.cc 51 modifier_state |= WebKit::WebInputEvent::ShiftKey;
web_drag_dest_gtk.cc 39 modifier_state |= WebKit::WebInputEvent::ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 177 convertedModifiers & PlatformEvent::ShiftKey,
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.cpp 162 } else if (!strcmp(characters, "shiftKey") || !strcmp(characters, "rangeSelectionKey"))
163 event->modifiers |= WebInputEvent::ShiftKey;
213 if ((event.modifiers & ~WebKeyboardEvent::ShiftKey) != WebKeyboardEvent::MetaKey)
233 if (event.modifiers & WebKeyboardEvent::ShiftKey)
654 eventDown.modifiers |= WebInputEvent::ShiftKey;
    [all...]
  /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/chrome/browser/ui/
browser_browsertest.cc     [all...]
  /external/chromium_org/content/renderer/pepper/
event_conversion.cc 46 static_cast<int>(WebInputEvent::ShiftKey),
674 key_down_event->modifiers |= WebInputEvent::ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/web/mac/
WebInputEventFactory.mm 541 modifiers |= WebInputEvent::ShiftKey;
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_popup_controller_impl.cc 265 return (event.modifiers & content::NativeWebKeyboardEvent::ShiftKey) &&

Completed in 470 milliseconds

1 2