OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:screenBase
(Results
1 - 3
of
3
) sorted by null
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
VDUBuffer.java
52
public int
screenBase
; /* the actual screen start */
167
charArray[
screenBase
+ l][c] = ch;
168
charAttributes[
screenBase
+ l][c] = attributes;
184
return charArray[
screenBase
+ l][c];
197
return charAttributes[
screenBase
+ l][c];
223
System.arraycopy(charArray[
screenBase
+ l], c, charArray[
screenBase
+ l], c + 1, width - c - 1);
224
System.arraycopy(charAttributes[
screenBase
+ l], c, charAttributes[
screenBase
+ l], c + 1,
243
System.arraycopy(charArray[
screenBase
+ l], c + 1, charArray[screenBase + l], c, width -
[
all
...]
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
TerminalView.java
170
int y = (buffer.getCursorRow() + buffer.
screenBase
- buffer.windowBase) * bridge.charHeight;
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
TerminalBridge.java
772
if (buffer.windowBase != buffer.
screenBase
) {
773
buffer.setWindowBase(buffer.
screenBase
);
Completed in 778 milliseconds