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

  /external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
WebPageQt.cpp 92 static const unsigned CtrlKey = 1 << 0;
111 { VK_LEFT, CtrlKey, "MoveWordLeft" },
112 { VK_LEFT, CtrlKey | ShiftKey, "MoveWordLeftAndModifySelection" },
115 { VK_RIGHT, CtrlKey, "MoveWordRight" },
116 { VK_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
127 { VK_HOME, CtrlKey, "MoveToBeginningOfDocument" },
128 { VK_HOME, CtrlKey | ShiftKey, "MoveToBeginningOfDocumentAndModifySelection" },
132 { VK_END, CtrlKey, "MoveToEndOfDocument" },
133 { VK_END, CtrlKey | ShiftKey, "MoveToEndOfDocumentAndModifySelection" },
138 { VK_BACK, CtrlKey, "DeleteWordBackward" }
    [all...]
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 227 static const unsigned CtrlKey = 1 << 0;
246 { VK_LEFT, CtrlKey, "MoveWordLeft" },
247 { VK_LEFT, CtrlKey | ShiftKey, "MoveWordLeftAndModifySelection" },
250 { VK_RIGHT, CtrlKey, "MoveWordRight" },
251 { VK_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
262 { VK_HOME, CtrlKey, "MoveToBeginningOfDocument" },
263 { VK_HOME, CtrlKey | ShiftKey, "MoveToBeginningOfDocumentAndModifySelection" },
267 { VK_END, CtrlKey, "MoveToEndOfDocument" },
268 { VK_END, CtrlKey | ShiftKey, "MoveToEndOfDocumentAndModifySelection" },
273 { VK_BACK, CtrlKey, "DeleteWordBackward" }
    [all...]
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 52 static const unsigned CtrlKey = 1 << 0;
71 { VK_LEFT, CtrlKey, "MoveWordLeft" },
72 { VK_LEFT, CtrlKey | ShiftKey, "MoveWordLeftAndModifySelection" },
75 { VK_RIGHT, CtrlKey, "MoveWordRight" },
76 { VK_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
87 { VK_HOME, CtrlKey, "MoveToBeginningOfDocument" },
88 { VK_HOME, CtrlKey | ShiftKey, "MoveToBeginningOfDocumentAndModifySelection" },
92 { VK_END, CtrlKey, "MoveToEndOfDocument" },
93 { VK_END, CtrlKey | ShiftKey, "MoveToEndOfDocumentAndModifySelection" },
98 { VK_BACK, CtrlKey, "DeleteWordBackward" }
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/win/
WebPageWin.cpp 80 static const unsigned CtrlKey = 1 << 0;
99 { VK_LEFT, CtrlKey, "MoveWordLeft" },
100 { VK_LEFT, CtrlKey | ShiftKey, "MoveWordLeftAndModifySelection" },
103 { VK_RIGHT, CtrlKey, "MoveWordRight" },
104 { VK_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
115 { VK_HOME, CtrlKey, "MoveToBeginningOfDocument" },
116 { VK_HOME, CtrlKey | ShiftKey, "MoveToBeginningOfDocumentAndModifySelection" },
120 { VK_END, CtrlKey, "MoveToEndOfDocument" },
121 { VK_END, CtrlKey | ShiftKey, "MoveToEndOfDocumentAndModifySelection" },
126 { VK_BACK, CtrlKey, "DeleteWordBackward" }
    [all...]
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.cpp 228 static const unsigned CtrlKey = 1 << 0;
247 { VK_LEFT, CtrlKey, "MoveWordLeft" },
248 { VK_LEFT, CtrlKey | ShiftKey, "MoveWordLeftAndModifySelection" },
251 { VK_RIGHT, CtrlKey, "MoveWordRight" },
252 { VK_RIGHT, CtrlKey | ShiftKey, "MoveWordRightAndModifySelection" },
263 { VK_HOME, CtrlKey, "MoveToBeginningOfDocument" },
264 { VK_HOME, CtrlKey | ShiftKey, "MoveToBeginningOfDocumentAndModifySelection" },
268 { VK_END, CtrlKey, "MoveToEndOfDocument" },
269 { VK_END, CtrlKey | ShiftKey, "MoveToEndOfDocumentAndModifySelection" },
274 { VK_BACK, CtrlKey, "DeleteWordBackward" }
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 373 static const unsigned CtrlKey = 1 << 0;
412 { VKEY_LEFT, CtrlKey, "MoveWordLeft" },
413 { VKEY_LEFT, CtrlKey | ShiftKey,
423 { VKEY_RIGHT, CtrlKey, "MoveWordRight" },
424 { VKEY_RIGHT, CtrlKey | ShiftKey,
452 { VKEY_HOME, CtrlKey, "MoveToBeginningOfDocument" },
453 { VKEY_HOME, CtrlKey | ShiftKey,
463 { VKEY_END, CtrlKey, "MoveToEndOfDocument" },
464 { VKEY_END, CtrlKey | ShiftKey,
479 { VKEY_BACK, CtrlKey, "DeleteWordBackward" }
    [all...]
WebAccessibilityObject.cpp 416 if (modifiers & PlatformKeyboardEvent::CtrlKey)
  /external/webkit/Source/WebCore/page/qt/
EventHandlerQt.cpp 127 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.cpp 202 static const unsigned CtrlKey = 1 << 0;
219 { 'B', CtrlKey, "ToggleBold" },
220 { 'I', CtrlKey, "ToggleItalic" },
222 { VK_OEM_PERIOD, CtrlKey, "Cancel" },
226 { VK_RETURN, CtrlKey, "InsertNewline" },
235 { '\r', CtrlKey, "InsertNewline" },
332 modifiers |= CtrlKey;
  /external/webkit/Source/WebCore/platform/
PlatformKeyboardEvent.h 97 CtrlKey = 1 << 1,
153 bool ctrlKey() const { return m_ctrlKey; }
158 | (ctrlKey() ? CtrlKey : 0)
164 static void getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 589 static const unsigned CtrlKey = 1 << 0;
606 { 'B', CtrlKey, "ToggleBold" },
607 { 'I', CtrlKey, "ToggleItalic" },
609 { VK_OEM_PERIOD, CtrlKey, "Cancel" },
613 { VK_RETURN, CtrlKey, "InsertNewline" },
622 { '\r', CtrlKey, "InsertNewline" },
658 if (event->ctrlKey())
659 modifiers |= CtrlKey;
758 if (platformEvent->ctrlKey() || platformEvent->altKey())
    [all...]
  /external/webkit/Source/WebCore/page/chromium/
EventHandlerChromium.cpp 151 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;
  /external/webkit/Source/WebCore/platform/android/
KeyEventAndroid.cpp 224 , m_ctrlKey(sym ? CtrlKey : 0)
254 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
258 ctrlKey = false;
  /external/webkit/Source/WebKit/win/
WebView.cpp     [all...]
AccessibleBase.cpp 369 if (modifiers & PlatformKeyboardEvent::CtrlKey)
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 354 static const unsigned CtrlKey = 1 << 0;
401 if (event->ctrlKey())
402 modifiers |= CtrlKey;
470 if (kevent->ctrlKey()) {
  /external/webkit/Source/WebCore/page/mac/
EventHandlerMac.mm 771 return PlatformKeyboardEvent::CtrlKey;
773 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;

Completed in 535 milliseconds