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

1 2 3 4 5

  /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)
108 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
119 : UIEventWithKeyState(eventType, initializer.bubbles, initializer.cancelable, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey)
130 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
131 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
146 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
156 m_shiftKey = shiftKey;
169 return shiftKey();
TouchEvent.cpp 45 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
47 ctrlKey, altKey, shiftKey, metaKey)
63 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
79 m_shiftKey = shiftKey;
TouchEvent.h 47 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
50 ctrlKey, altKey, shiftKey, metaKey, cancelable));
57 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
80 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable);
KeyboardEvent.h 43 bool shiftKey;
74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
77 ctrlKey, altKey, shiftKey, metaKey, altGraphKey));
84 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey = false);
111 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
WheelEvent.h 70 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice)
73 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey, directionInvertedFromDevice));
78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
82 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
107 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice);
WheelEvent.cpp 65 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice)
70 ctrlKey, altKey, shiftKey, metaKey, 0, nullptr, nullptr, false)
83 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
93 m_shiftKey = shiftKey;
107 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
110 ctrlKey, altKey, shiftKey, metaKey);
150 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.directionInvertedFromDevice()));
KeyboardEvent.idl 33 [InitializedByEventConstructor] readonly attribute boolean shiftKey;
50 [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, clipboard, isSimulated));
90 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
96 ctrlKey, altKey, shiftKey, metaKey, isSimulated)
109 initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey, false /* isSimulated */)
125 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
136 m_shiftKey = shiftKey;
217 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)
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;
61 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
72 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
100 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,
WheelEvent.idl 55 [Default=Undefined] optional boolean shiftKey,
MouseRelatedEvent.h 67 bool ctrlKey, bool altKey, 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;
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)
PlatformMouseEvent.h 75 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
76 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
PlatformWheelEvent.h 82 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
83 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0)
  /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/chromeos/chromevox/common/
key_sequence_test.js 32 * shiftKey: boolean=,
40 * shiftKey: Whether or not the shift key was held down.
64 if (eventParams.hasOwnProperty('shiftKey')) {
65 mockEvent.shiftKey = eventParams.shiftKey;
118 this.shiftAEvent = this.createMockEvent(65, {shiftKey: true});
123 shiftKey: true});
126 this.shiftAPrefixEvent = this.createMockEvent(65, {shiftKey: true,
130 this.shiftAStickyEvent = this.createMockEvent(65, {shiftKey: true,
155 this.shiftCtrlEvent = this.createMockEvent(17, {shiftKey: true})
    [all...]
  /external/chromium_org/chrome/browser/resources/local_ntp/
window_disposition_util.js 31 e.shiftKey);
  /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 405 milliseconds

1 2 3 4 5