Searched refs:screenBase (Results 1 – 3 of 3) sorted by relevance
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
D | VDUBuffer.java | 52 public int screenBase; /* the actual screen start */ field in VDUBuffer 167 charArray[screenBase + l][c] = ch; in putChar() 168 charAttributes[screenBase + l][c] = attributes; in putChar() 184 return charArray[screenBase + l][c]; in getChar() 197 return charAttributes[screenBase + l][c]; in getAttributes() 223 System.arraycopy(charArray[screenBase + l], c, charArray[screenBase + l], c + 1, width - c - 1); in insertChar() 224 System.arraycopy(charAttributes[screenBase + l], c, charAttributes[screenBase + l], c + 1, in insertChar() 243 System.arraycopy(charArray[screenBase + l], c + 1, charArray[screenBase + l], c, width - c in deleteChar() 245 System.arraycopy(charAttributes[screenBase + l], c + 1, charAttributes[screenBase + l], c, in deleteChar() 369 int oldBase = screenBase; in insertLine() [all …]
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/ |
D | TerminalView.java | 170 int y = (buffer.getCursorRow() + buffer.screenBase - buffer.windowBase) * bridge.charHeight; in onDraw()
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/ |
D | TerminalBridge.java | 772 if (buffer.windowBase != buffer.screenBase) { in resetScrollPosition() 773 buffer.setWindowBase(buffer.screenBase); in resetScrollPosition()
|