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

/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DWebKeyboardEvent.cpp40 WebKeyboardEvent::WebKeyboardEvent(Type type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool handledByInputMethod, const Vector<WebCore::KeypressCommand>& commands, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers modifiers, double timestamp) argument
52 , m_isSystemKey(isSystemKey)
59 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
69 , m_isSystemKey(isSystemKey)
H A DWebEvent.h220 WebKeyboardEvent(Type, const String& text, const String& unmodifiedText, const String& keyIdentifier, int windowsVirtualKeyCode, int nativeVirtualKeyCode, int macCharCode, bool handledByInputMethod, const Vector<WebCore::KeypressCommand>&, bool isAutoRepeat, bool isKeypad, bool isSystemKey, Modifiers, double timestamp);
222 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);
237 bool isSystemKey() const { return m_isSystemKey; } function in class:WebKit::WebKeyboardEvent
H A DWebEventConversion.cpp194 m_isSystemKey = webEvent.isSystemKey();
/macosx-10.10/WebCore-7600.1.25/platform/
H A DPlatformKeyboardEvent.h76 PlatformKeyboardEvent(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
89 , m_isSystemKey(isSystemKey)
125 bool isSystemKey() const { return m_isSystemKey; } function in class:WebCore::PlatformKeyboardEvent
/macosx-10.10/WebKit2-7600.1.25/Shared/ios/
H A DWebIOSEventFactory.mm62 bool isSystemKey = false;
84 return WebKit::WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, autoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
/macosx-10.10/WebKit2-7600.1.25/Shared/mac/
H A DWebEventFactory.mm420 bool isSystemKey = false; // SystemKey is always false on the Mac.
442 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, handledByInputMethod, commands, autoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
/macosx-10.10/WebCore-7600.1.25/replay/
H A DSerializationMethods.cpp270 ENCODE_TYPE_WITH_KEY(encodedValue, bool, systemKey, input.isSystemKey());
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/
H A DWebPage.cpp1978 if (keyboardEvent.type() == WebEvent::Char && keyboardEvent.isSystemKey())
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebView.cpp2006 if (!keyEvent || keyEvent->isSystemKey()) // do not treat this as text input if it's a system key event

Completed in 214 milliseconds