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;
90 private final VDUBuffer buffer;
580 if ((currAttr & VDUBuffer.COLOR_FG) != 0) { in onDraw()
581 int fgcolor = ((currAttr & VDUBuffer.COLOR_FG) >> VDUBuffer.COLOR_FG_SHIFT) - 1; in onDraw()
582 if (fgcolor < 8 && (currAttr & VDUBuffer.BOLD) != 0) { in onDraw()
592 if ((currAttr & VDUBuffer.COLOR_BG) != 0) { in onDraw()
593 bg = color[((currAttr & VDUBuffer.COLOR_BG) >> VDUBuffer.COLOR_BG_SHIFT) - 1]; in onDraw()
599 if ((currAttr & VDUBuffer.INVERT) != 0) { in onDraw()
606 defaultPaint.setUnderlineText((currAttr & VDUBuffer.UNDERLINE) != 0); in onDraw()
608 isWideCharacter = (currAttr & VDUBuffer.FULLWIDTH) != 0; in onDraw()
[all …]
DTerminalKeyListener.java30 import de.mud.terminal.VDUBuffer;
64 private final VDUBuffer buffer;
79 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.java37 public class VDUBuffer { class
112 public VDUBuffer(int width, int height) { in VDUBuffer() method in VDUBuffer
120 public VDUBuffer() { in VDUBuffer() method in VDUBuffer
Dvt320.java38 public abstract class vt320 extends VDUBuffer implements VDUInput {
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
DTerminalView.java34 import de.mud.terminal.VDUBuffer;
147 VDUBuffer buffer = bridge.getVDUBuffer(); in onDraw()
166 boolean onWideCharacter = (currentAttribute & VDUBuffer.FULLWIDTH) != 0; in onDraw()
DConsoleActivity.java73 import de.mud.terminal.VDUBuffer;
410 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;
145 public String copyFrom(VDUBuffer vb) { in copyFrom()