Lines Matching refs:fromCharCode
73 output = output + String.fromCharCode(chr1);
76 output = output + String.fromCharCode(chr2);
79 output = output + String.fromCharCode(chr3);
103 utftext += String.fromCharCode(c);
106 utftext += String.fromCharCode((c >> 6) | 192);
107 utftext += String.fromCharCode((c & 63) | 128);
110 utftext += String.fromCharCode((c >> 12) | 224);
111 utftext += String.fromCharCode(((c >> 6) & 63) | 128);
112 utftext += String.fromCharCode((c & 63) | 128);
131 string += String.fromCharCode(c);
136 string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
142 string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));