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

  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 87 static const unsigned AltKey = 1 << 0;
105 { VK_LEFT, AltKey, "MoveWordLeft" },
106 { VK_LEFT, AltKey | ShiftKey, "MoveWordLeftAndModifySelection" },
109 { VK_RIGHT, AltKey, "MoveWordRight" },
110 { VK_RIGHT, AltKey | ShiftKey, "MoveWordRightAndModifySelection" },
118 { VK_BACK, AltKey, "DeleteWordBackward" },
119 { VK_BACK, AltKey | ShiftKey, "DeleteWordForward" },
125 { VK_RETURN, AltKey, "InsertNewline" },
126 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" }
133 { '\r', AltKey, "InsertNewline" }
    [all...]
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 54 static const unsigned AltKey = 1 << 1;
112 { VK_RETURN, AltKey, "InsertNewline" },
113 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
124 { '\r', AltKey, "InsertNewline" },
125 { '\r', AltKey | ShiftKey, "InsertNewline" },
383 if (!keyEvent || keyEvent->altKey()) // do not treat this as text input if Alt is down
426 if (evt->altKey())
427 modifiers |= AltKey;
  /external/webkit/WebCore/page/chromium/
EventHandlerChromium.cpp 151 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;
153 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebCore/platform/
PlatformKeyboardEvent.h 85 AltKey = 1 << 0,
121 bool altKey() const { return m_altKey; }
124 return (altKey() ? AltKey : 0)
  /external/webkit/WebCore/page/android/
EventHandlerAndroid.cpp 119 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebCore/page/gtk/
EventHandlerGtk.cpp 122 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebCore/page/win/
EventHandlerWin.cpp 116 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebCore/page/wx/
EventHandlerWx.cpp 124 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebKit/chromium/src/
WebInputEventConversion.cpp 60 m_altKey = (e.modifiers & WebInputEvent::AltKey);
100 m_altKey = (e.modifiers & WebInputEvent::AltKey);
135 m_altKey = (e.modifiers & WebInputEvent::AltKey);
178 if (event.altKey())
179 modifiers |= WebInputEvent::AltKey;
EditorClientImpl.cpp 357 static const unsigned AltKey = 1 << 1;
363 static const unsigned OptionKey = AltKey;
470 { VKEY_RETURN, AltKey, "InsertNewline" },
471 { VKEY_RETURN, AltKey | ShiftKey, "InsertNewline" },
496 { '\r', AltKey, "InsertNewline" },
497 { '\r', AltKey | ShiftKey, "InsertNewline" },
527 if (keyEvent->altKey())
528 modifiers |= AltKey;
607 if (evt->keyEvent()->ctrlKey() && !evt->keyEvent()->altKey())
    [all...]
WebAccessibilityObject.cpp 342 if (modifiers & PlatformKeyboardEvent::AltKey)
ChromeClientImpl.cpp 258 bool alt = mouseEvent->modifiers & WebMouseEvent::AltKey;
  /external/webkit/WebKit/chromium/tests/
KeyboardTest.cpp 203 EXPECT_STREQ("InsertNewline", interpretNewLine(WebInputEvent::AltKey));
208 int modifiers = WebInputEvent::AltKey | WebInputEvent::ShiftKey;
  /external/webkit/WebCore/page/haiku/
EventHandlerHaiku.cpp 58 && event->altKey()
147 return PlatformKeyboardEvent::AltKey;
  /external/webkit/WebKit/chromium/public/
WebInputEvent.h 106 AltKey = 1 << 2,
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 337 static const unsigned AltKey = 1 << 1;
394 { VK_RETURN, AltKey, "InsertNewline" },
395 { VK_RETURN, AltKey | ShiftKey, "InsertNewline" },
403 { '\r', AltKey, "InsertNewline" },
404 { '\r', AltKey | ShiftKey, "InsertNewline" },
428 if (evt->altKey())
429 modifiers |= AltKey;
508 if (platformEvent->ctrlKey() || platformEvent->altKey())
  /external/webkit/WebKit/chromium/src/gtk/
WebInputEventFactory.cpp 74 modifiers |= WebInputEvent::AltKey;
259 if (result.modifiers & WebInputEvent::AltKey)
313 if (result.modifiers & WebInputEvent::AltKey)
  /external/webkit/WebKit/chromium/src/win/
WebInputEventFactory.cpp 138 result.modifiers |= WebInputEvent::AltKey;
284 result.modifiers |= WebInputEvent::AltKey;
381 result.modifiers |= WebInputEvent::AltKey;
  /external/webkit/WebCore/platform/android/
KeyEventAndroid.cpp 225 , m_altKey(alt ? AltKey : 0)
  /external/webkit/WebKit/win/
AccessibleBase.cpp 371 if (modifiers & PlatformKeyboardEvent::AltKey)
WebView.cpp     [all...]
  /external/webkit/WebCore/page/mac/
EventHandlerMac.mm 794 && event->altKey()
857 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;

Completed in 184 milliseconds