Home
last modified time | relevance | path

Searched refs:COLOR_FG (Results 1 – 5 of 5) sorted by relevance

/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
DColorsActivity.java51 mPreferences.getInt(PreferenceConstants.COLOR_FG, PreferenceConstants.DEFAULT_FG_COLOR); in onCreate()
239 editor.putInt(PreferenceConstants.COLOR_FG, mFgColor); in colorChanged()
276 editor.putInt(PreferenceConstants.COLOR_FG, mFgColor); in onCreateOptionsMenu()
DPreferenceConstants.java69 public final static String COLOR_FG = "color_fg"; field in PreferenceConstants
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
DTerminalBridge.java192 manager.getIntParameter(PreferenceConstants.COLOR_FG, PreferenceConstants.DEFAULT_FG_COLOR); in TerminalBridge()
580 if ((currAttr & VDUBuffer.COLOR_FG) != 0) { in onDraw()
581 int fgcolor = ((currAttr & VDUBuffer.COLOR_FG) >> VDUBuffer.COLOR_FG_SHIFT) - 1; in onDraw()
866 } else if (PreferenceConstants.COLOR_FG.equals(key)) { in onSharedPreferenceChanged()
868 manager.getIntParameter(PreferenceConstants.COLOR_FG, in onSharedPreferenceChanged()
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
Dvt320.java2505 attributes &= ~COLOR_FG; in putChar()
3099 attributes &= ~COLOR_FG; in putChar()
3104 attributes &= ~COLOR_FG; in putChar()
3110 attributes &= ~COLOR_FG; in putChar()
3141 attributes &= ~COLOR_FG; in putChar()
DVDUBuffer.java100 public final static int COLOR_FG = 0x3fe0; /* 0000 0000 0000 0000 0011 1111 1110 0000 */ field in VDUBuffer