HomeSort by relevance Sort by last modified time
    Searched refs:ShiftKey (Results 1 - 25 of 33) 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) |
web_input_event_aurax11.cc 128 webkit_event.modifiers & blink::WebInputEvent::ShiftKey);
ui_events_helper.cc 17 if (modifiers & blink::WebInputEvent::ShiftKey)
247 modifiers |= blink::WebInputEvent::ShiftKey;
render_widget_host_unittest.cc     [all...]
ime_adapter_android.cc 72 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 186 EXPECT_STREQ("InsertBacktab", interpretTab(WebInputEvent::ShiftKey));
201 EXPECT_STREQ("InsertLineBreak", interpretNewLine(WebInputEvent::ShiftKey));
211 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/Source/web/
WebInputEventConversion.cpp 107 if (e.modifiers & WebInputEvent::ShiftKey)
108 m_modifiers |= PlatformEvent::ShiftKey;
160 if (e.modifiers & WebInputEvent::ShiftKey)
161 m_modifiers |= PlatformEvent::ShiftKey;
272 if (e.modifiers & WebInputEvent::ShiftKey)
273 m_modifiers |= PlatformEvent::ShiftKey;
313 if (e.modifiers & WebInputEvent::ShiftKey)
314 m_modifiers |= PlatformEvent::ShiftKey;
448 if (event.modifiers & WebInputEvent::ShiftKey)
449 m_modifiers |= PlatformEvent::ShiftKey;
    [all...]
WebPluginScrollbarImpl.cpp 343 keyCode = ((keyboard.modifiers & WebInputEvent::ShiftKey) ? VKEY_PRIOR : VKEY_NEXT);
359 if (keyboard.isSystemKey || (keyboard.modifiers & WebInputEvent::ShiftKey))
ChromeClientImpl.cpp 264 bool shift = mouseEvent->modifiers & WebMouseEvent::ShiftKey;
WebAXObject.cpp 662 if (modifiers & PlatformEvent::ShiftKey)
  /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/content/browser/renderer_host/input/
web_input_event_builders_win.cc 155 result.modifiers |= WebInputEvent::ShiftKey;
299 result.modifiers |= WebInputEvent::ShiftKey;
394 result.modifiers |= WebInputEvent::ShiftKey;
touch_emulator.cc 158 UpdateShiftPressed((mouse_event.modifiers & WebInputEvent::ShiftKey) != 0);
181 if (!UpdateShiftPressed((event.modifiers & WebInputEvent::ShiftKey) != 0))
touch_emulator_unittest.cc 95 return shift_pressed_ ? WebInputEvent::ShiftKey : 0;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 178 convertedModifiers & PlatformEvent::ShiftKey,
  /external/chromium_org/content/public/test/
browser_test_utils.cc 315 modifiers |= blink::WebInputEvent::ShiftKey;
377 modifiers &= ~blink::WebInputEvent::ShiftKey;
  /external/chromium_org/chrome/browser/ui/
browser_browsertest.cc     [all...]
  /external/chromium_org/content/renderer/pepper/
event_conversion.cc 47 static_cast<int>(WebInputEvent::ShiftKey),
681 key_down_event->modifiers |= WebInputEvent::ShiftKey;
  /external/chromium_org/content/shell/renderer/test_runner/
event_sender.cc 74 } else if (!strcmp(characters, "shiftKey") ||
76 return WebInputEvent::ShiftKey;
273 if ((event.modifiers & ~WebKeyboardEvent::ShiftKey) !=
294 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 1115 milliseconds

1 2