Home
last modified time | relevance | path

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

/plugin/diagramsnet/lib/js/deflate/
H A Dbase64.js96 var utftext = "";
103 utftext += String.fromCharCode(c);
106 utftext += String.fromCharCode((c >> 6) | 192);
107 utftext += String.fromCharCode((c & 63) | 128);
117 return utftext;
121 _utf8_decode : function (utftext) { argument
126 while ( i < utftext.length ) {
128 c = utftext.charCodeAt(i);
135 c2 = utftext.charCodeAt(i+1);
140 c2 = utftext.charCodeAt(i+1);
[all …]