HomeSort by relevance Sort by last modified time
    Searched refs:isSystemKey (Results 1 - 23 of 23) 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)
43 , m_isSystemKey(isSystemKey)
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; }
WebEventConversion.cpp 162 m_isSystemKey = webEvent.isSystemKey();
  /external/webkit/Source/WebKit2/WebProcess/WebPage/win/
WebPageWin.cpp 207 if (keyboardEvent.isSystemKey())
215 if (keyboardEvent.isSystemKey())
221 if (keyboardEvent.isSystemKey())
227 if (keyboardEvent.isSystemKey())
232 if (keyboardEvent.isSystemKey())
237 if (keyboardEvent.isSystemKey())
242 if (keyboardEvent.isSystemKey())
247 if (keyboardEvent.isSystemKey())
252 if (keyboardEvent.isSystemKey())
  /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/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/WebKit/chromium/src/win/
WebInputEventFactory.cpp 114 result.isSystemKey = true;
119 result.isSystemKey = true;
127 result.isSystemKey = true;
  /external/webkit/Source/WebCore/platform/
PlatformKeyboardEvent.h 212 bool isSystemKey() const { return m_isSystemKey; }
  /frameworks/base/libs/androidfw/
Input.cpp 85 bool KeyEvent::isSystemKey(int32_t keyCode) {
117 bool KeyEvent::isSystemKey() const {
118 return isSystemKey(getKeyCode());
  /external/webkit/Source/WebKit/chromium/src/gtk/
WebInputEventFactory.cpp 345 result.isSystemKey = true;
399 result.isSystemKey = true;
  /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/include/androidfw/
Input.h 291 static bool isSystemKey(int32_t keyCode);
292 bool isSystemKey() const;
  /external/webkit/Source/WebKit/chromium/src/mac/
WebInputEventFactory.mm 597 // Windows and Linux set |isSystemKey| if alt is down. WebKit looks at this
603 result.isSystemKey = true;
625 // Windows and Linux set |isSystemKey| if alt is down. WebKit looks at this
631 result.isSystemKey = true;
  /frameworks/base/core/jni/
android_view_KeyEvent.cpp 105 return KeyEvent::isSystemKey(keyCode);
android_app_NativeActivity.cpp 243 if (!((KeyEvent*)event)->isSystemKey()) {
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebInputEventConversion.cpp 138 m_isSystemKey = e.isSystemKey;
WebScrollbarImpl.cpp 242 if (keyboard.isSystemKey || (keyboard.modifiers & WebInputEvent::ShiftKey))
EditorClientImpl.cpp 383 // with cmd set have their |isSystemKey| bit set, so chances are the shortcut
568 if (!keyEvent || keyEvent->isSystemKey())
    [all...]
WebViewImpl.cpp 731 if (evt.isSystemKey())
807 if (!event.isSystemKey && !(event.modifiers & WebInputEvent::ShiftKey))
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 997 if (keyboardEvent.type() == WebEvent::Char && keyboardEvent.isSystemKey())
    [all...]
  /external/chromium/chrome/browser/automation/
testing_automation_provider.cc     [all...]
  /external/webkit/Source/WebKit/win/
WebView.cpp     [all...]

Completed in 263 milliseconds