Home
last modified time | relevance | path

Searched refs:META_ALT_ON (Results 1 – 2 of 2) sorted by relevance

/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
DTerminalKeyListener.java46 public final static int META_ALT_ON = 0x04; field in TerminalKeyListener
55 public final static int META_ALT_MASK = META_ALT_ON | META_ALT_LOCK;
59 public final static int META_TRANSIENT = META_CTRL_ON | META_ALT_ON | META_SHIFT_ON;
180 curMetaState |= KeyEvent.META_ALT_ON; in onKey()
181 metaState &= ~META_ALT_ON; in onKey()
248 metaPress(META_ALT_ON); in onKey()
263 metaPress(META_ALT_ON); in onKey()
270 metaPress(META_ALT_ON); in onKey()
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
DTerminalView.java189 if ((metaState & TerminalKeyListener.META_ALT_ON) != 0) { in onDraw()