HomeSort by relevance Sort by last modified time
    Searched refs:currAttr (Results 1 - 2 of 2) sorted by null

  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
TerminalBridge.java 578 int currAttr = buffer.charAttributes[buffer.windowBase + l][c];
580 if ((currAttr & VDUBuffer.COLOR_FG) != 0) {
581 int fgcolor = ((currAttr & VDUBuffer.COLOR_FG) >> VDUBuffer.COLOR_FG_SHIFT) - 1;
582 if (fgcolor < 8 && (currAttr & VDUBuffer.BOLD) != 0) {
592 if ((currAttr & VDUBuffer.COLOR_BG) != 0) {
593 bg = color[((currAttr & VDUBuffer.COLOR_BG) >> VDUBuffer.COLOR_BG_SHIFT) - 1];
599 if ((currAttr & VDUBuffer.INVERT) != 0) {
606 defaultPaint.setUnderlineText((currAttr & VDUBuffer.UNDERLINE) != 0);
608 isWideCharacter = (currAttr & VDUBuffer.FULLWIDTH) != 0;
616 && buffer.charAttributes[buffer.windowBase + l][c + addr] == currAttr) {
    [all...]
  /external/icu/icu4c/source/test/cintltst/
capitst.c 112 UColAttribute currAttr;
121 currAttr = attrs[i].att;
122 ucol_setAttribute(coll, currAttr, UCOL_DEFAULT, &status);
127 value = ucol_getAttribute(coll, currAttr, &status);
133 ucol_setAttribute(coll, currAttr, attrs[i].val[j], &status);
140 ucol_setAttribute(coll, currAttr, attrs[i].nonValue, &status);
147 ucol_setAttribute(coll, currAttr, value, &status);
    [all...]

Completed in 280 milliseconds