Searched refs:utftext (Results 1 – 1 of 1) sorted by relevance
96 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) { argument126 while ( i < utftext.length ) {128 c = utftext.charCodeAt(i);135 c2 = utftext.charCodeAt(i+1);140 c2 = utftext.charCodeAt(i+1);[all …]