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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingBehavior.cpp 42 static const unsigned ShiftKey = 1 << 2;
76 { VKEY_LEFT, ShiftKey, "MoveLeftAndModifySelection" },
79 { VKEY_LEFT, OptionKey | ShiftKey,
83 { VKEY_LEFT, CtrlKey | ShiftKey,
87 { VKEY_RIGHT, ShiftKey, "MoveRightAndModifySelection" },
90 { VKEY_RIGHT, OptionKey | ShiftKey, "MoveWordRightAndModifySelection" },
93 { VKEY_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
96 { VKEY_UP, ShiftKey, "MoveUpAndModifySelection" },
97 { VKEY_PRIOR, ShiftKey, "MovePageUpAndModifySelection" },
99 { VKEY_DOWN, ShiftKey, "MoveDownAndModifySelection" }
    [all...]
  /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) |
render_widget_host_unittest.cc     [all...]
ime_adapter_android.cc 74 blink::WebInputEvent::ShiftKey,
ui_events_helper.cc 18 if (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 185 EXPECT_STREQ("InsertBacktab", interpretTab(WebInputEvent::ShiftKey));
200 EXPECT_STREQ("InsertLineBreak", interpretNewLine(WebInputEvent::ShiftKey));
210 int modifiers = WebInputEvent::AltKey | WebInputEvent::ShiftKey;
ChromeClientImplTest.cpp 148 int modifiers = WebInputEvent::ShiftKey;
157 int modifiers = WebInputEvent::ShiftKey;
197 modifiers |= WebInputEvent::ShiftKey;
211 modifiers |= WebInputEvent::ShiftKey;
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 105 if (e.modifiers & WebInputEvent::ShiftKey)
106 m_modifiers |= PlatformEvent::ShiftKey;
158 if (e.modifiers & WebInputEvent::ShiftKey)
159 m_modifiers |= PlatformEvent::ShiftKey;
270 if (e.modifiers & WebInputEvent::ShiftKey)
271 m_modifiers |= PlatformEvent::ShiftKey;
311 if (e.modifiers & WebInputEvent::ShiftKey)
312 m_modifiers |= PlatformEvent::ShiftKey;
446 if (event.modifiers & WebInputEvent::ShiftKey)
447 m_modifiers |= PlatformEvent::ShiftKey;
    [all...]
WebPluginScrollbarImpl.cpp 341 keyCode = ((keyboard.modifiers & WebInputEvent::ShiftKey) ? VKEY_PRIOR : VKEY_NEXT);
357 if (keyboard.isSystemKey || (keyboard.modifiers & WebInputEvent::ShiftKey))
WebAXObject.cpp 644 if (modifiers & PlatformEvent::ShiftKey)
WebViewImpl.cpp 238 if (webInputEventKeyState & WebInputEvent::ShiftKey)
239 platformEventKeyState = platformEventKeyState | PlatformEvent::ShiftKey;
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 146 ShiftKey = 1 << 0,
179 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;
  /external/chromium_org/mojo/services/html_viewer/
blink_input_events_type_converters.cc 22 modifiers |= blink::WebInputEvent::ShiftKey;
42 blink::WebInputEvent::ShiftKey : 0) |
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_builders_win.cc 155 result.modifiers |= WebInputEvent::ShiftKey;
301 result.modifiers |= WebInputEvent::ShiftKey;
396 result.modifiers |= WebInputEvent::ShiftKey;
touch_emulator.cc 158 UpdateShiftPressed((mouse_event.modifiers & WebInputEvent::ShiftKey) != 0);
181 if (!UpdateShiftPressed((event.modifiers & WebInputEvent::ShiftKey) != 0))
web_input_event_util.cc 385 modifiers |= blink::WebInputEvent::ShiftKey;
412 if (modifiers & blink::WebInputEvent::ShiftKey)
touch_emulator_unittest.cc 99 return shift_pressed_ ? WebInputEvent::ShiftKey : 0;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 174 convertedModifiers & PlatformEvent::ShiftKey,
  /external/chromium_org/content/public/test/
browser_test_utils.cc 341 modifiers |= blink::WebInputEvent::ShiftKey;
399 modifiers &= ~blink::WebInputEvent::ShiftKey;
  /external/chromium_org/chrome/browser/ui/
browser_browsertest.cc     [all...]
  /external/chromium_org/content/renderer/pepper/
event_conversion.cc 44 static_cast<int>(WebInputEvent::ShiftKey),
692 key_down_event->modifiers |= WebInputEvent::ShiftKey;
  /external/chromium_org/content/shell/renderer/test_runner/
event_sender.cc 75 } else if (!strcmp(characters, "shiftKey") ||
77 return WebInputEvent::ShiftKey;
296 if ((event.modifiers & ~WebKeyboardEvent::ShiftKey) !=
317 if (event.modifiers & WebKeyboardEvent::ShiftKey)
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_popup_controller_impl.cc 272 return (event.modifiers & content::NativeWebKeyboardEvent::ShiftKey) &&

Completed in 4664 milliseconds

1 2