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

  /external/webkit/Source/WebKit2/Shared/
WebKeyboardEvent.cpp 33 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)
42 , m_isKeypad(isKeypad)
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; }
WebEventConversion.cpp 153 m_isKeypad = webEvent.isKeypad();
  /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/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/dom/
KeyboardEvent.cpp 66 , m_keyLocation(key.isKeypad() ? DOM_KEY_LOCATION_NUMPAD : DOM_KEY_LOCATION_STANDARD) // FIXME: differentiate right/left, too
  /external/webkit/Source/WebCore/platform/qt/
PlatformKeyboardEventQt.cpp 140 int windowsKeyCodeForKeyEvent(unsigned int keycode, bool isKeypad)
143 if (isKeypad) {
  /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);

Completed in 84 milliseconds