Home | History | Annotate | Download | only in normalizer

Lines Matching defs:hex

334                         +Utility.hex(s1) + " s2: " + Utility.hex(s2));
340 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
347 +Utility.hex(s1) + " s2: " + Utility.hex(s2));
354 errln("cross test failed s1: " + Utility.hex(s1) + " s2: "
355 +Utility.hex(s2));
429 errln((" " + msg + ": " + op + op2 + '(' + s + ")=" + hex(got) +
430 ", exp. " + hex(exp)));
436 * character. Then, parse the resultant fields from hex into
484 int hex = Integer.parseInt(strToHex,16);
485 if (hex < 0 ) {
486 throw new IllegalArgumentException("Out of range hex " +
487 hex + " in " + s);
488 }else if (hex > 0xFFFF){
489 buf.append((char)((hex>>10)+0xd7c0));
490 buf.append((char)((hex&0x3ff)|0xdc00));
492 buf.append((char) hex);