Searched refs:charAttributes (Results 1 – 2 of 2) sorted by relevance
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
D | VDUBuffer.java | 49 public int[][] charAttributes; /* contains character attrs */ field in VDUBuffer 168 charAttributes[screenBase + l][c] = attributes; in putChar() 197 return charAttributes[screenBase + l][c]; in getAttributes() 224 System.arraycopy(charAttributes[screenBase + l], c, charAttributes[screenBase + l], c + 1, in insertChar() 245 System.arraycopy(charAttributes[screenBase + l], c + 1, charAttributes[screenBase + l], c, in deleteChar() 399 System.arraycopy(charAttributes, oldBase + l, abuf, 0, bottom - l - (n - 1)); in insertLine() 401 System.arraycopy(abuf, 0, charAttributes, oldBase + l + n, bottom - l - (n - 1)); in insertLine() 403 abuf = charAttributes; in insertLine() 428 abuf = charAttributes; in insertLine() 434 System.arraycopy(charAttributes, offset, abuf, 0, oldBase - offset); in insertLine() [all …]
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/ |
D | TerminalBridge.java | 580 int currAttr = buffer.charAttributes[buffer.windowBase + l][c]; in onDraw() 618 && buffer.charAttributes[buffer.windowBase + l][c + addr] == currAttr) { in onDraw()
|