Home
last modified time | relevance | path

Searched refs:screenBase (Results 1 – 3 of 3) sorted by relevance

/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
DVDUBuffer.java51 public int screenBase; /* the actual screen start */ field in VDUBuffer
166 charArray[screenBase + l][c] = ch; in putChar()
167 charAttributes[screenBase + l][c] = attributes; in putChar()
183 return charArray[screenBase + l][c]; in getChar()
196 return charAttributes[screenBase + l][c]; in getAttributes()
222 System.arraycopy(charArray[screenBase + l], c, charArray[screenBase + l], c + 1, width - c - 1); in insertChar()
223 System.arraycopy(charAttributes[screenBase + l], c, charAttributes[screenBase + l], c + 1, in insertChar()
242 System.arraycopy(charArray[screenBase + l], c + 1, charArray[screenBase + l], c, width - c in deleteChar()
244 System.arraycopy(charAttributes[screenBase + l], c + 1, charAttributes[screenBase + l], c, in deleteChar()
368 int oldBase = screenBase; in insertLine()
[all …]
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
DTerminalView.java169 int y = (buffer.getCursorRow() + buffer.screenBase - buffer.windowBase) * bridge.charHeight; in onDraw()
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
DTerminalBridge.java770 if (buffer.windowBase != buffer.screenBase) { in resetScrollPosition()
771 buffer.setWindowBase(buffer.screenBase); in resetScrollPosition()