Home | History | Annotate | Download | only in normalizer

Lines Matching defs:hex

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