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.java52 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/
DTerminalView.java170 int y = (buffer.getCursorRow() + buffer.screenBase - buffer.windowBase) * bridge.charHeight; in onDraw()
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
DTerminalBridge.java772 if (buffer.windowBase != buffer.screenBase) { in resetScrollPosition()
773 buffer.setWindowBase(buffer.screenBase); in resetScrollPosition()