Home
last modified time | relevance | path

Searched refs:fgcolor (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DCodeContext.py32 fgcolor = idleConf.GetOption("extensions", "CodeContext", variable in CodeContext
76 bg=self.bgcolor, fg=self.fgcolor,
Dconfig-extensions.def63 fgcolor=Black
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
DTerminalBridge.java581 int fgcolor = ((currAttr & VDUBuffer.COLOR_FG) >> VDUBuffer.COLOR_FG_SHIFT) - 1; in onDraw() local
582 if (fgcolor < 8 && (currAttr & VDUBuffer.BOLD) != 0) { in onDraw()
583 fg = color[fgcolor + 8]; in onDraw()
585 fg = color[fgcolor]; in onDraw()