Searched refs:charAttributes (Results 1 – 2 of 2) sorted by relevance
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
D | VDUBuffer.java | 48 public int[][] charAttributes; /* contains character attrs */ field in VDUBuffer 167 charAttributes[screenBase + l][c] = attributes; in putChar() 196 return charAttributes[screenBase + l][c]; in getAttributes() 223 System.arraycopy(charAttributes[screenBase + l], c, charAttributes[screenBase + l], c + 1, in insertChar() 244 System.arraycopy(charAttributes[screenBase + l], c + 1, charAttributes[screenBase + l], c, in deleteChar() 398 System.arraycopy(charAttributes, oldBase + l, abuf, 0, bottom - l - (n - 1)); in insertLine() 400 System.arraycopy(abuf, 0, charAttributes, oldBase + l + n, bottom - l - (n - 1)); in insertLine() 402 abuf = charAttributes; in insertLine() 427 abuf = charAttributes; in insertLine() 433 System.arraycopy(charAttributes, offset, abuf, 0, oldBase - offset); in insertLine() [all …]
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/ |
D | TerminalBridge.java | 578 int currAttr = buffer.charAttributes[buffer.windowBase + l][c]; in onDraw() 616 && buffer.charAttributes[buffer.windowBase + l][c + addr] == currAttr) { in onDraw()
|