HomeSort by relevance Sort by last modified time
    Searched refs:AltKey (Results 1 - 25 of 44) 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/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 90 static const unsigned AltKey = 1 << 0;
108 { VK_LEFT, AltKey, "MoveWordLeft" },
109 { VK_LEFT, AltKey | ShiftKey, "MoveWordLeftAndModifySelection" },
112 { VK_RIGHT, AltKey, "MoveWordRight" },
113 { VK_RIGHT, AltKey | ShiftKey, "MoveWordRightAndModifySelection" },
121 { VK_BACK, AltKey, "DeleteWordBackward" },
122 { VK_BACK, AltKey | ShiftKey, "DeleteWordForward" },
128 { VK_RETURN, AltKey, "InsertNewline" },
129 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" }
136 { '\r', AltKey, "InsertNewline" }
    [all...]
  /external/webkit/Source/WebCore/page/qt/
EventHandlerQt.cpp 127 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;
129 return PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
WebPageQt.cpp 93 static const unsigned AltKey = 1 << 1;
150 { VK_RETURN, AltKey, "InsertNewline" },
152 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
172 { '\r', AltKey, "InsertNewline" },
174 { '\r', AltKey | ShiftKey, "InsertNewline" },
198 if (evt->altKey())
199 modifiers |= AltKey;
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.cpp 229 static const unsigned AltKey = 1 << 1;
286 { VK_RETURN, AltKey, "InsertNewline" },
287 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
295 { '\r', AltKey, "InsertNewline" },
296 { '\r', AltKey | ShiftKey, "InsertNewline" },
320 if (event->altKey())
321 modifiers |= AltKey;
392 if (keyEvent->ctrlKey() || keyEvent->altKey())
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 228 static const unsigned AltKey = 1 << 1;
284 { VK_RETURN, AltKey, "InsertNewline" },
285 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
305 { '\r', AltKey, "InsertNewline" },
306 { '\r', AltKey | ShiftKey, "InsertNewline" }
330 if (event->altKey())
331 modifiers |= AltKey;
402 if (keyEvent->ctrlKey() || keyEvent->altKey())
  /external/webkit/Source/WebCore/page/chromium/
EventHandlerChromium.cpp 151 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;
153 return PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebKit/chromium/public/
WebInputEvent.h 114 AltKey = 1 << 2,
133 static const int InputModifiers = ShiftKey | ControlKey | AltKey | MetaKey;
  /external/webkit/Source/WebCore/page/android/
EventHandlerAndroid.cpp 116 return PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebCore/page/brew/
EventHandlerBrew.cpp 123 return PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebCore/page/efl/
EventHandlerEfl.cpp 123 return PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebCore/page/win/
EventHandlerWin.cpp 121 return PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebCore/page/wx/
EventHandlerWx.cpp 124 return PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebKit/chromium/src/
WebInputEventConversion.cpp 61 m_altKey = (e.modifiers & WebInputEvent::AltKey);
101 m_altKey = (e.modifiers & WebInputEvent::AltKey);
136 m_altKey = (e.modifiers & WebInputEvent::AltKey);
221 m_altKey = event.modifiers & WebInputEvent::AltKey;
238 if (event.altKey())
239 modifiers |= WebInputEvent::AltKey;
EditorClientImpl.cpp 374 static const unsigned AltKey = 1 << 1;
380 static const unsigned OptionKey = AltKey;
491 { VKEY_RETURN, AltKey, "InsertNewline" },
492 { VKEY_RETURN, AltKey | ShiftKey, "InsertNewline" },
517 { '\r', AltKey, "InsertNewline" },
518 { '\r', AltKey | ShiftKey, "InsertNewline" },
548 if (keyEvent->altKey())
549 modifiers |= AltKey;
628 if (evt->keyEvent()->ctrlKey() && !evt->keyEvent()->altKey())
    [all...]
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 53 static const unsigned AltKey = 1 << 1;
111 { VK_RETURN, AltKey, "InsertNewline" },
123 { '\r', AltKey, "InsertNewline" },
124 { '\r', AltKey | ShiftKey, "InsertNewline" },
388 if (!keyEvent || keyEvent->altKey()) // do not treat this as text input if Alt is down
431 if (evt->altKey())
432 modifiers |= AltKey;
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.cpp 203 static const unsigned AltKey = 1 << 1;
227 { VK_RETURN, AltKey, "InsertNewline" },
228 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
236 { '\r', AltKey, "InsertNewline" },
237 { '\r', AltKey | ShiftKey, "InsertNewline" },
329 if (event.altKey())
330 modifiers |= AltKey;
  /external/webkit/Source/WebKit2/WebProcess/WebPage/win/
WebPageWin.cpp 81 static const unsigned AltKey = 1 << 1;
138 { VK_RETURN, AltKey, "InsertNewline" },
140 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
160 { '\r', AltKey, "InsertNewline" },
162 { '\r', AltKey | ShiftKey, "InsertNewline" },
186 if (evt->altKey())
187 modifiers |= AltKey;
  /external/webkit/Source/WebCore/platform/
PlatformKeyboardEvent.h 96 AltKey = 1 << 0,
154 bool altKey() const { return m_altKey; }
157 return (altKey() ? AltKey : 0)
164 static void getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey);
  /external/webkit/Source/WebKit/chromium/tests/
KeyboardTest.cpp 203 EXPECT_STREQ("InsertNewline", interpretNewLine(WebInputEvent::AltKey));
208 int modifiers = WebInputEvent::AltKey | WebInputEvent::ShiftKey;
  /external/webkit/Source/WebCore/page/gtk/
EventHandlerGtk.cpp 122 return PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebCore/page/haiku/
EventHandlerHaiku.cpp 137 return PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleNavigationAction.cpp 68 if (keyStateEvent->altKey())
69 modifiers |= WebEvent::AltKey;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 590 static const unsigned AltKey = 1 << 1;
614 { VK_RETURN, AltKey, "InsertNewline" },
615 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
623 { '\r', AltKey, "InsertNewline" },
624 { '\r', AltKey | ShiftKey, "InsertNewline" },
656 if (event->altKey())
657 modifiers |= AltKey;
758 if (platformEvent->ctrlKey() || platformEvent->altKey())
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebEvent.h 80 AltKey = 1 << 2,
89 bool altKey() const { return m_modifiers & AltKey; }
312 WebTouchEvent(Type, Vector<WebPlatformTouchPoint>, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers, double timestamp);

Completed in 888 milliseconds

1 2