Home
last modified time | relevance | path

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

/build/make/tools/droiddoc/templates-ndk/assets/js/
Dandroid_3p-bundle.js376 function decodeEscape(charsetPart) { argument
377 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);