HomeSort by relevance Sort by last modified time
    Searched refs:shiftKey (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/events/
UIEventWithKeyState.h 34 bool shiftKey() const { return m_shiftKey; }
48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
52 , m_shiftKey(shiftKey)
KeyboardEvent.cpp 92 , shiftKey(false)
106 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
115 : UIEventWithKeyState(eventType, initializer.bubbles, initializer.cancelable, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey)
124 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
125 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
138 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
148 m_shiftKey = shiftKey;
160 return shiftKey();
TouchEvent.cpp 45 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
47 ctrlKey, altKey, shiftKey, metaKey)
62 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
78 m_shiftKey = shiftKey;
TouchEvent.h 48 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
51 ctrlKey, altKey, shiftKey, metaKey, cancelable));
58 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
81 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable);
KeyboardEvent.h 43 bool shiftKey;
75 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
78 ctrlKey, altKey, shiftKey, metaKey));
85 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
110 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
WheelEvent.h 71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
74 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey));
98 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
KeyboardEvent.idl 33 [InitializedByEventConstructor] readonly attribute boolean shiftKey;
49 [Default=Undefined] optional boolean shiftKey,
TouchEvent.idl 30 readonly attribute boolean shiftKey;
45 [Default=Undefined] optional boolean shiftKey,
MouseEvent.cpp 40 , shiftKey(false)
64 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.button(),
71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
77 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, dataTransfer, isSimulated, syntheticEventType));
89 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
95 ctrlKey, altKey, shiftKey, metaKey, isSimulated)
108 initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey, false /* isSimulated */)
123 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
134 m_shiftKey = shiftKey;
214 m_shiftKey = keyStateEvent->shiftKey();
    [all...]
GestureEvent.cpp 68 return adoptRefWillBeNoop(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), deltaX, deltaY));
90 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY)
91 : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey)
WheelEvent.cpp 63 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
65 pageLocation.x(), pageLocation.y(), 0, 0, ctrlKey, altKey, shiftKey, metaKey, 0, nullptr,
112 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey()));
GestureEvent.h 52 GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY);
MouseEvent.h 45 bool shiftKey;
62 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
103 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
MouseEvent.idl 28 [InitializedByEventConstructor] readonly attribute boolean shiftKey;
49 [Default=Undefined] optional boolean shiftKey,
MouseRelatedEvent.h 70 bool shiftKey, bool metaKey, bool isSimulated = false);
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformKeyboardEvent.cpp 87 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
90 shiftKey = GetKeyState(VK_SHIFT) & HIGHBITMASKSHORT;
96 shiftKey = currentModifiers & ::shiftKey;
101 shiftKey = false;
PlatformEvent.h 80 ShiftKey = 1 << 3,
85 bool shiftKey() const { return m_modifiers & ShiftKey; }
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
121 if (shiftKey)
122 m_modifiers |= ShiftKey;
PlatformMouseEvent.h 77 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, SyntheticEventType synthesized, double timestamp)
78 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
PlatformWheelEvent.h 78 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
79 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0)
PlatformGestureEvent.h 46 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, float deltaX, float deltaY, float velocityX, float velocityY)
47 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
PlatformKeyboardEvent.h 90 PLATFORM_EXPORT static void getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
keycodes.js 74 if (evt.shiftKey) {
90 shiftKey: true,
  /external/chromium_org/chrome/browser/resources/local_ntp/
window_disposition_util.js 31 e.shiftKey);
  /external/chromium_org/ui/accessibility/extensions/caretbrowsing/
caretbrowsing.js 826 if (!evt.shiftKey && !CaretBrowsing.isCollapsed(sel)) {
854 evt.shiftKey ? start : end, end)) {
859 if (!evt.shiftKey) {
878 if (!evt.shiftKey && !CaretBrowsing.isCollapsed(sel)) {
907 evt.shiftKey ? end : start, start)) {
912 if (!evt.shiftKey) {
932 if (!evt.shiftKey && !CaretBrowsing.isCollapsed(sel)) {
960 evt.shiftKey ? start : leftPos, leftPos)) {
977 evt.shiftKey ? start : bestPos, bestPos)) {
988 evt.shiftKey ? start : leftPos, leftPos))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationAction.cpp 74 if (!mouseEvent || !navigationPolicyFromMouseEvent(mouseEvent->button(), mouseEvent->ctrlKey(), mouseEvent->shiftKey(), mouseEvent->altKey(), mouseEvent->metaKey(), &m_policy))

Completed in 758 milliseconds

1 2 3 4 5 6