Home | History | Annotate | Download | only in normalizer

Lines Matching defs:hex

106             //System.out.println("Excluding " + hex(value));
183 "\"\\u" + hex((char)value) + "\", "
184 + "\"\\u" + hex(decomp, "\\u") + "\", "
442 * Utility: Parses a sequence of hex Unicode characters separated by spaces
477 throw new IllegalArgumentException("Bad hex value in " + source);
484 * Utility: Supplies a zero-padded hex representation of an integer (without 0x)
486 static public String hex(int i) {
492 * Utility: Supplies a zero-padded hex representation of a Unicode character (without 0x, \\u)
494 static public String hex(char i) {
500 * Utility: Supplies a zero-padded hex representation of a Unicode character (without 0x, \\u)
502 public static String hex(String s, String sep) {
506 result.append(hex(s.charAt(i)));