Home
last modified time | relevance | path

Searched refs:VDUBuffer (Results 1 – 8 of 8) sorted by relevance

/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
DTerminalBridge.java43 import de.mud.terminal.VDUBuffer;
92 private final VDUBuffer buffer;
582 if ((currAttr & VDUBuffer.COLOR_FG) != 0) { in onDraw()
583 int fgcolor = ((currAttr & VDUBuffer.COLOR_FG) >> VDUBuffer.COLOR_FG_SHIFT) - 1; in onDraw()
584 if (fgcolor < 8 && (currAttr & VDUBuffer.BOLD) != 0) { in onDraw()
594 if ((currAttr & VDUBuffer.COLOR_BG) != 0) { in onDraw()
595 bg = color[((currAttr & VDUBuffer.COLOR_BG) >> VDUBuffer.COLOR_BG_SHIFT) - 1]; in onDraw()
601 if ((currAttr & VDUBuffer.INVERT) != 0) { in onDraw()
608 defaultPaint.setUnderlineText((currAttr & VDUBuffer.UNDERLINE) != 0); in onDraw()
610 isWideCharacter = (currAttr & VDUBuffer.FULLWIDTH) != 0; in onDraw()
[all …]
DTerminalKeyListener.java30 import de.mud.terminal.VDUBuffer;
66 private final VDUBuffer buffer;
81 public TerminalKeyListener(TerminalManager manager, TerminalBridge bridge, VDUBuffer buffer, in TerminalKeyListener()
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
DVDUDisplay.java35 public void setVDUBuffer(VDUBuffer buffer); in setVDUBuffer()
36 public VDUBuffer getVDUBuffer(); in getVDUBuffer()
DVDUBuffer.java38 public class VDUBuffer { class
113 public VDUBuffer(int width, int height) { in VDUBuffer() method in VDUBuffer
121 public VDUBuffer() { in VDUBuffer() method in VDUBuffer
Dvt320.java39 public abstract class vt320 extends VDUBuffer implements VDUInput {
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
DTerminalView.java34 import de.mud.terminal.VDUBuffer;
148 VDUBuffer buffer = bridge.getVDUBuffer(); in onDraw()
167 boolean onWideCharacter = (currentAttribute & VDUBuffer.FULLWIDTH) != 0; in onDraw()
DConsoleActivity.java74 import de.mud.terminal.VDUBuffer;
411 VDUBuffer buffer = terminal.bridge.getVDUBuffer(); in onCreate()
678 VDUBuffer buffer = bridge.getVDUBuffer(); in doEmailTranscript()
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
DSelectionArea.java20 import de.mud.terminal.VDUBuffer;
146 public String copyFrom(VDUBuffer vb) { in copyFrom()