OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CHORDING
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/keyboard/resources/elements/
kb-modifier-key.js
16
CHORDING
: "
chording
", //
Chording
mode.
45
case KEY_STATES.
CHORDING
:
71
this.state = KEY_STATES.
CHORDING
;
89
* Called on a pointer-out event. Ends
chording
.
93
// TODO(rsadam): Add
chording
event so that we don't reset
94
// when shift-
chording
.
95
if (this.state == KEY_STATES.
CHORDING
) {
101
* Overrides the autoRelease function to enable
chording
[
all
...]
kb-shift-key.js
19
CHORDING
: "
chording
" // Key-down followed by other keys.
23
* The pointerdown event on shiftkey that may eventually trigger
chording
53
if (state == KEY_STATES.
CHORDING
&&
55
// Disables all other pointer events on shift keys when
chording
.
62
case KEY_STATES.
CHORDING
:
63
// Leaves
chording
only if the pointer that triggered it is
78
// Sliding off the shift key while
chording
is treated as a key-up.
81
// called on the old shift key. We should not end
chording
in that
83
if (state == KEY_STATES.
CHORDING
&
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
ModifierKeyState.java
27
protected static final int
CHORDING
= 2;
53
mState =
CHORDING
;
67
return mState ==
CHORDING
;
79
case
CHORDING
: return "
CHORDING
";
Completed in 240 milliseconds