Home
last modified time | relevance | path

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

/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
Dvt320.java849 int idx = 0, oldidx = 0; in unEscape() local
853 while ((idx = tmp.indexOf('\\', oldidx)) >= 0 && ++idx <= tmp.length()) { in unEscape()
854 cmd += tmp.substring(oldidx, idx - 1); in unEscape()
895 oldidx = ++idx; in unEscape()
897 if (oldidx <= tmp.length()) { in unEscape()
898 cmd += tmp.substring(oldidx); in unEscape()