Searched refs:MetaKeyKeyListener (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/text/method/
H A DDialerKeyListener.java63 if ((meta & (MetaKeyKeyListener.META_ALT_ON | MetaKeyKeyListener.META_SHIFT_ON)) == 0) {
H A DArrowKeyMovementMethod.java35 return ((MetaKeyKeyListener.getMetaState(buffer, MetaKeyKeyListener.META_SHIFT_ON) == 1) ||
36 (MetaKeyKeyListener.getMetaState(buffer, MetaKeyKeyListener.META_SELECTING) != 0));
59 && MetaKeyKeyListener.getMetaState(buffer,
60 MetaKeyKeyListener.META_SELECTING, event) != 0) {
302 MetaKeyKeyListener.adjustMetaAfterKeypress(buffer);
303 MetaKeyKeyListener.resetLockedMeta(buffer);
H A DTouch.java140 || MetaKeyKeyListener.getMetaState(buffer,
141 MetaKeyKeyListener.META_SHIFT_ON) == 1
142 || MetaKeyKeyListener.getMetaState(buffer,
143 MetaKeyKeyListener.META_SELECTING) != 0;
H A DBaseMovementMethod.java44 MetaKeyKeyListener.adjustMetaAfterKeypress(text);
45 MetaKeyKeyListener.resetLockedMeta(text);
65 MetaKeyKeyListener.adjustMetaAfterKeypress(text);
66 MetaKeyKeyListener.resetLockedMeta(text);
138 int metaState = MetaKeyKeyListener.getMetaState(buffer, event)
139 & ~(MetaKeyKeyListener.META_ALT_LOCKED | MetaKeyKeyListener.META_SYM_LOCKED);
H A DBaseKeyListener.java36 public abstract class BaseKeyListener extends MetaKeyKeyListener
H A DMetaKeyKeyListener.java50 * {@link MetaKeyKeyListener} implements chorded and toggled key modifiers.
56 * In other words, the {@link MetaKeyKeyListener} augments the meta state
58 * to ensure that meta keys not handled by {@link MetaKeyKeyListener} such as
73 public abstract class MetaKeyKeyListener { class
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java30 import android.text.method.MetaKeyKeyListener;
166 * {@link MetaKeyKeyListener#clearMetaKeyState(long, int)
167 * MetaKeyKeyListener.clearMetaKeyState(long, int)} to clear the state.
172 MetaKeyKeyListener.clearMetaKeyState(content, states);
503 if (start == end && MetaKeyKeyListener.getMetaState(content,
504 MetaKeyKeyListener.META_SELECTING) != 0) {
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java21 import android.text.method.MetaKeyKeyListener;
350 * when the specified meta bits (see {@link MetaKeyKeyListener})
H A DKeyEvent.java21 import android.text.method.MetaKeyKeyListener;
261 * interpreted as an ALT key by {@link android.text.method.MetaKeyKeyListener}. */
836 * Reserved for use by {@link MetaKeyKeyListener} for a published constant in its API.
843 * Reserved for use by {@link MetaKeyKeyListener} for a published constant in its API.
850 * Reserved for use by {@link MetaKeyKeyListener} for a published constant in its API.
857 * Reserved for use by {@link MetaKeyKeyListener} for a private unpublished constant
1923 // historical uses in MetaKeyKeyListener.
1999 * {@link MetaKeyKeyListener}, then those states are translated here and the original
2001 * {@link MetaKeyKeyListener#META_CAP_LOCKED} is translated to {@link #META_CAPS_LOCK_ON}.
2002 * {@link MetaKeyKeyListener#META_ALT_LOCKE
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java78 import android.text.method.MetaKeyKeyListener;
6088 MetaKeyKeyListener.startSelecting(this, sp);
6090 MetaKeyKeyListener.stopSelecting(this, sp);
7808 if (MetaKeyKeyListener.isMetaTracker(buf, what)) {
7810 if (ims != null && MetaKeyKeyListener.isSelectingMetaTracker(buf, what)) {
7903 MetaKeyKeyListener.resetMetaState(sp);
9485 if (MetaKeyKeyListener.getMetaState(buffer, MetaKeyKeyListener.META_SELECTING) != 0) {
9486 MetaKeyKeyListener.stopSelecting(TextView.this, buffer);
H A DEditor.java68 import android.text.method.MetaKeyKeyListener;
1207 if (MetaKeyKeyListener.getMetaState(content, MetaKeyKeyListener.META_SELECTING) != 0) {

Completed in 148 milliseconds