Searched refs:isSystemKey (Results 1 - 19 of 19) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DWebKeyboardEvent.cpp33 WebKeyboardEvent::WebKeyboardEvent(Type type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers modifiers, double timestamp) argument
43 , m_isSystemKey(isSystemKey)
H A DWebEvent.h217 WebKeyboardEvent(Type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers, double timestamp);
227 bool isSystemKey() const { return m_isSystemKey; } function in class:WebKit::WebKeyboardEvent
H A DWebEventConversion.cpp162 m_isSystemKey = webEvent.isSystemKey();
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/
H A DWebPageWin.cpp207 if (keyboardEvent.isSystemKey())
215 if (keyboardEvent.isSystemKey())
221 if (keyboardEvent.isSystemKey())
227 if (keyboardEvent.isSystemKey())
232 if (keyboardEvent.isSystemKey())
237 if (keyboardEvent.isSystemKey())
242 if (keyboardEvent.isSystemKey())
247 if (keyboardEvent.isSystemKey())
252 if (keyboardEvent.isSystemKey())
/external/webkit/Source/WebKit/chromium/public/
H A DWebInputEvent.h225 int isSystemKey; member in class:WebKit::WebKeyboardEvent
231 , isSystemKey(false)
/external/webkit/Source/WebKit/chromium/src/win/
H A DWebInputEventFactory.cpp114 result.isSystemKey = true;
119 result.isSystemKey = true;
127 result.isSystemKey = true;
/external/webkit/Tools/DumpRenderTree/chromium/
H A DEventSender.cpp150 bool isSystemKey = false; local
168 isSystemKey = true;
176 isSystemKey = true;
182 return isSystemKey;
187 bool isSystemKey = false; local
191 isSystemKey |= applyKeyModifier(*i, event);
193 isSystemKey = applyKeyModifier(argument->toString(), event);
194 return isSystemKey;
574 eventDown.isSystemKey = applyKeyModifiers(&(arguments[1]), &eventDown);
/external/webkit/Source/WebKit2/Shared/qt/
H A DWebEventFactoryQt.cpp153 bool isSystemKey = false; // FIXME: No idea what that is. local
162 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, isAutoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
/external/webkit/Source/WebCore/platform/
H A DPlatformKeyboardEvent.h212 bool isSystemKey() const { return m_isSystemKey; } function in class:WebCore::PlatformKeyboardEvent
/external/webkit/Source/WebKit/chromium/src/gtk/
H A DWebInputEventFactory.cpp345 result.isSystemKey = true;
399 result.isSystemKey = true;
/external/webkit/Source/WebKit2/Shared/win/
H A DWebEventFactory.cpp457 bool isSystemKey = isSystemKeyEvent(message); local
461 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, autoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
/external/webkit/Source/WebKit/chromium/src/
H A DWebScrollbarImpl.cpp242 if (keyboard.isSystemKey || (keyboard.modifiers & WebInputEvent::ShiftKey))
H A DWebInputEventConversion.cpp138 m_isSystemKey = e.isSystemKey;
H A DEditorClientImpl.cpp383 // with cmd set have their |isSystemKey| bit set, so chances are the shortcut
568 if (!keyEvent || keyEvent->isSystemKey())
H A DWebViewImpl.cpp731 if (evt.isSystemKey())
807 if (!event.isSystemKey && !(event.modifiers & WebInputEvent::ShiftKey))
/external/webkit/Source/WebKit/chromium/src/mac/
H A DWebInputEventFactory.mm597 // Windows and Linux set |isSystemKey| if alt is down. WebKit looks at this
603 result.isSystemKey = true;
625 // Windows and Linux set |isSystemKey| if alt is down. WebKit looks at this
631 result.isSystemKey = true;
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp997 if (keyboardEvent.type() == WebEvent::Char && keyboardEvent.isSystemKey())
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider.cc4634 if (!args->GetBoolean("isSystemKey", &is_system_key)) {
4635 *error = "'isSystemKey' missing or invalid.";
4698 event->isSystemKey = is_system_key;
/external/webkit/Source/WebKit/win/
H A DWebView.cpp1913 if (!keyEvent || keyEvent->isSystemKey()) // do not treat this as text input if it's a system key event

Completed in 317 milliseconds