Lines Matching refs:code
6 // * Redistributions of source code must retain the above copyright
39 result[index++] = 37; // Char code of '%'.
235 result[index++] = 37; // Char code of '%'.
284 // Does the char code correspond to an alpha-numeric char.
349 function HexValueOf(code) {
351 if (code >= 48 && code <= 57) return code - 48;
353 if (code >= 65 && code <= 70) return code - 55;
355 if (code >= 97 && code <= 102) return code - 87;
361 // Convert a character code to 4-digit hex string representation