Searched refs:currAttr (Results 1 – 2 of 2) sorted by relevance
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/ |
D | TerminalBridge.java | 580 int currAttr = buffer.charAttributes[buffer.windowBase + l][c]; in onDraw() local 582 if ((currAttr & VDUBuffer.COLOR_FG) != 0) { in onDraw() 583 int fgcolor = ((currAttr & VDUBuffer.COLOR_FG) >> VDUBuffer.COLOR_FG_SHIFT) - 1; in onDraw() 584 if (fgcolor < 8 && (currAttr & VDUBuffer.BOLD) != 0) { in onDraw() 594 if ((currAttr & VDUBuffer.COLOR_BG) != 0) { in onDraw() 595 bg = color[((currAttr & VDUBuffer.COLOR_BG) >> VDUBuffer.COLOR_BG_SHIFT) - 1]; in onDraw() 601 if ((currAttr & VDUBuffer.INVERT) != 0) { in onDraw() 608 defaultPaint.setUnderlineText((currAttr & VDUBuffer.UNDERLINE) != 0); in onDraw() 610 isWideCharacter = (currAttr & VDUBuffer.FULLWIDTH) != 0; in onDraw() 618 && buffer.charAttributes[buffer.windowBase + l][c + addr] == currAttr) { in onDraw() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | capitst.c | 110 UColAttribute currAttr; in TestGetSetAttr() local 119 currAttr = attrs[i].att; in TestGetSetAttr() 120 ucol_setAttribute(coll, currAttr, UCOL_DEFAULT, &status); in TestGetSetAttr() 125 value = ucol_getAttribute(coll, currAttr, &status); in TestGetSetAttr() 131 ucol_setAttribute(coll, currAttr, attrs[i].val[j], &status); in TestGetSetAttr() 138 ucol_setAttribute(coll, currAttr, attrs[i].nonValue, &status); in TestGetSetAttr() 145 ucol_setAttribute(coll, currAttr, value, &status); in TestGetSetAttr()
|