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

1 2

  /external/chromium/chrome/browser/ui/views/
unhandled_keyboard_event_handler.cc 42 (event.modifiers & NativeWebKeyboardEvent::AltKey) ==
43 NativeWebKeyboardEvent::AltKey);
  /external/chromium_org/content/browser/renderer_host/
native_web_keyboard_event.cc 18 if (event.modifiers & NativeWebKeyboardEvent::AltKey)
native_web_keyboard_event_aura.cc 26 (flags & ui::EF_ALT_DOWN ? WebKit::WebInputEvent::AltKey : 0);
web_input_event_aurax11.cc 211 if (webkit_event.modifiers & WebKit::WebInputEvent::AltKey)
ui_events_helper.cc 20 if (modifiers & WebKit::WebInputEvent::AltKey)
246 modifiers |= WebKit::WebInputEvent::AltKey;
ime_adapter_android.cc 63 WebKit::WebInputEvent::AltKey,
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformEvent.h 75 AltKey = 1 << 0,
85 bool altKey() const { return m_modifiers & AltKey; }
114 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
123 if (altKey)
124 m_modifiers |= AltKey;
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp 86 if (e.modifiers & WebInputEvent::AltKey)
87 m_modifiers |= PlatformEvent::AltKey;
135 if (e.modifiers & WebInputEvent::AltKey)
136 m_modifiers |= PlatformEvent::AltKey;
232 if (e.modifiers & WebInputEvent::AltKey)
233 m_modifiers |= PlatformEvent::AltKey;
273 if (e.modifiers & WebInputEvent::AltKey)
274 m_modifiers |= PlatformEvent::AltKey;
403 if (event.modifiers & WebInputEvent::AltKey)
404 m_modifiers |= PlatformEvent::AltKey;
    [all...]
EditorClientImpl.cpp 329 static const unsigned AltKey = 1 << 1;
335 static const unsigned OptionKey = AltKey;
450 { VKEY_RETURN, AltKey, "InsertNewline" },
451 { VKEY_RETURN, AltKey | ShiftKey, "InsertNewline" },
477 { '\r', AltKey, "InsertNewline" },
478 { '\r', AltKey | ShiftKey, "InsertNewline" },
508 if (keyEvent->altKey())
509 modifiers |= AltKey;
588 if (evt->keyEvent()->ctrlKey() && !evt->keyEvent()->altKey())
WebAccessibilityObject.cpp 542 if (modifiers & PlatformEvent::AltKey)
  /external/chromium_org/third_party/WebKit/Source/web/tests/
KeyboardTest.cpp 203 EXPECT_STREQ("InsertNewline", interpretNewLine(WebInputEvent::AltKey));
208 int modifiers = WebInputEvent::AltKey | WebInputEvent::ShiftKey;
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 144 AltKey = 1 << 2,
175 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_builders_win.cc 159 result.modifiers |= WebInputEvent::AltKey;
301 result.modifiers |= WebInputEvent::AltKey;
399 result.modifiers |= WebInputEvent::AltKey;
  /external/chromium_org/third_party/WebKit/Source/web/gtk/
WebInputEventFactory.cpp 106 modifiers |= WebInputEvent::AltKey;
380 if (result.modifiers & WebInputEvent::AltKey)
438 if (result.modifiers & WebInputEvent::AltKey)
  /external/chromium_org/third_party/WebKit/Source/web/win/
WebInputEventFactory.cpp 184 result.modifiers |= WebInputEvent::AltKey;
331 result.modifiers |= WebInputEvent::AltKey;
429 result.modifiers |= WebInputEvent::AltKey;
  /external/chromium_org/content/browser/web_contents/
web_drag_dest_win.cc 55 modifier_state |= WebKit::WebInputEvent::AltKey;
web_drag_dest_gtk.cc 43 modifier_state |= WebKit::WebInputEvent::AltKey;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 179 convertedModifiers & PlatformEvent::AltKey,
  /external/chromium_org/third_party/WebKit/Source/web/mac/
WebInputEventFactory.mm 543 modifiers |= WebInputEvent::AltKey;
  /external/chromium/chrome/browser/ui/views/frame/
browser_view.cc     [all...]
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_gtk.cc 549 if (modifiers & WebInputEvent::AltKey)
  /external/chromium_org/content/public/test/
browser_test_utils.cc 149 event->modifiers |= WebKit::WebInputEvent::AltKey;
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.cpp 164 else if (!strcmp(characters, "altKey")) {
165 event->modifiers |= WebInputEvent::AltKey;
    [all...]
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_views.cc 85 modifiers |= WebKit::WebInputEvent::AltKey;
  /external/chromium_org/content/renderer/pepper/
event_conversion.cc 52 static_cast<int>(WebInputEvent::AltKey),

Completed in 346 milliseconds

1 2