Searched defs:isSystemKey (Results 1 - 7 of 7) 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
/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/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/WebCore/platform/
H A DPlatformKeyboardEvent.h212 bool isSystemKey() const { return m_isSystemKey; } function in class:WebCore::PlatformKeyboardEvent
/external/webkit/Source/WebKit/chromium/public/
H A DWebInputEvent.h225 int isSystemKey; member in class:WebKit::WebKeyboardEvent
231 , isSystemKey(false)
/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);

Completed in 114 milliseconds