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

  /external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp 154 bool isKeypad = (state & Qt::KeypadModifier);
156 int windowsVirtualKeyCode = windowsKeyCodeForKeyEvent(event->key(), isKeypad);
162 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, isAutoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
  /external/webkit/Source/WebCore/platform/
PlatformKeyboardEvent.h 151 bool isKeypad() const { return m_isKeypad; }
264 int windowsKeyCodeForKeyEvent(unsigned int keycode, bool isKeypad = false);
  /external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp 456 bool isKeypad = isKeypadEvent(wparam, lparam, type);
461 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, autoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
  /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);
226 bool isKeypad() const { return m_isKeypad; }

Completed in 84 milliseconds