OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isAutoRepeat
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
PlatformKeyboardEvent.h
50
PlatformKeyboardEvent(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)
58
, m_autoRepeat(
isAutoRepeat
)
88
bool
isAutoRepeat
() const { return m_autoRepeat; }
/external/chromium_org/third_party/WebKit/Source/core/events/
KeyboardEvent.cpp
114
, m_isAutoRepeat(key.
isAutoRepeat
())
/external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.cpp
285
m_autoRepeat = (e.modifiers & WebInputEvent::
IsAutoRepeat
);
684
if (event.
isAutoRepeat
())
685
modifiers |= WebInputEvent::
IsAutoRepeat
;
Completed in 756 milliseconds