Home | History | Annotate | Download | only in normalizer

Lines Matching defs:hex

193         errln(("      " + msg + ") " + op + "(" + s + ")=" + hex(got) +
194 ", exp. " + hex(exp)));
200 * character. Then, parse the resultant fields from hex into
248 int hex = Integer.parseInt(strToHex,16);
249 if (hex < 0 ) {
250 throw new IllegalArgumentException("Out of range hex " +
251 hex + " in " + s);
252 }else if (hex > 0xFFFF){
253 buf.append((char)((hex>>10)+0xd7c0));
254 buf.append((char)((hex&0x3ff)|0xdc00));
256 buf.append((char) hex);