Searched refs:charsetPart (Results 1 – 2 of 2) sorted by relevance
371 function decodeEscape(charsetPart) { argument372 if (charsetPart.charAt(0) !== '\\') { return charsetPart.charCodeAt(0); }373 switch (charsetPart.charAt(1)) {381 return parseInt(charsetPart.substring(2), 16)382 || charsetPart.charCodeAt(1);385 return parseInt(charsetPart.substring(1), 8);386 default: return charsetPart.charCodeAt(1);
376 function decodeEscape(charsetPart) { argument377 if (charsetPart.charAt(0) !== '\\') { return charsetPart.charCodeAt(0); }378 switch (charsetPart.charAt(1)) {386 return parseInt(charsetPart.substring(2), 16)387 || charsetPart.charCodeAt(1);390 return parseInt(charsetPart.substring(1), 8);391 default: return charsetPart.charCodeAt(1);