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.java52 mPreferences.getInt(PreferenceConstants.COLOR_FG, PreferenceConstants.DEFAULT_FG_COLOR); in onCreate()
240 editor.putInt(PreferenceConstants.COLOR_FG, mFgColor); in colorChanged()
277 editor.putInt(PreferenceConstants.COLOR_FG, mFgColor); in onCreateOptionsMenu()
DPreferenceConstants.java71 public final static String COLOR_FG = "color_fg"; field in PreferenceConstants
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
DTerminalBridge.java194 manager.getIntParameter(PreferenceConstants.COLOR_FG, PreferenceConstants.DEFAULT_FG_COLOR); in TerminalBridge()
582 if ((currAttr & VDUBuffer.COLOR_FG) != 0) { in onDraw()
583 int fgcolor = ((currAttr & VDUBuffer.COLOR_FG) >> VDUBuffer.COLOR_FG_SHIFT) - 1; in onDraw()
868 } else if (PreferenceConstants.COLOR_FG.equals(key)) { in onSharedPreferenceChanged()
870 manager.getIntParameter(PreferenceConstants.COLOR_FG, in onSharedPreferenceChanged()
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
Dvt320.java2506 attributes &= ~COLOR_FG; in putChar()
3100 attributes &= ~COLOR_FG; in putChar()
3105 attributes &= ~COLOR_FG; in putChar()
3111 attributes &= ~COLOR_FG; in putChar()
3142 attributes &= ~COLOR_FG; in putChar()
DVDUBuffer.java101 public final static int COLOR_FG = 0x3fe0; /* 0000 0000 0000 0000 0011 1111 1110 0000 */ field in VDUBuffer