HomeSort by relevance Sort by last modified time
    Searched defs:isSystemKey (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp 153 bool isSystemKey = false; // FIXME: No idea what that is.
162 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, isAutoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
  /external/webkit/Source/WebCore/platform/
PlatformKeyboardEvent.h 212 bool isSystemKey() const { return m_isSystemKey; }
  /external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp 457 bool isSystemKey = isSystemKeyEvent(message);
461 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, autoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
  /frameworks/base/libs/androidfw/
Input.cpp 87 bool KeyEvent::isSystemKey(int32_t keyCode) {
121 bool KeyEvent::isSystemKey() const {
122 return isSystemKey(getKeyCode());
  /external/webkit/Source/WebKit/chromium/public/
WebInputEvent.h 225 int isSystemKey;
231 , isSystemKey(false)
  /external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp 150 bool isSystemKey = false;
168 isSystemKey = true;
176 isSystemKey = true;
182 return isSystemKey;
187 bool isSystemKey = false;
191 isSystemKey |= applyKeyModifier(*i, event);
193 isSystemKey = applyKeyModifier(argument->toString(), event);
194 return isSystemKey;
574 eventDown.isSystemKey = applyKeyModifiers(&(arguments[1]), &eventDown);
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebEvent.h 217 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; }

Completed in 173 milliseconds