Home | History | Annotate | Download | only in normalizer

Lines Matching defs:hex

105             //System.out.println("Excluding " + hex(value));
182 "\"\\u" + hex((char)value) + "\", "
183 + "\"\\u" + hex(decomp, "\\u") + "\", "
441 * Utility: Parses a sequence of hex Unicode characters separated by spaces
476 throw new IllegalArgumentException("Bad hex value in " + source);
483 * Utility: Supplies a zero-padded hex representation of an integer (without 0x)
485 static public String hex(int i) {
491 * Utility: Supplies a zero-padded hex representation of a Unicode character (without 0x, \\u)
493 static public String hex(char i) {
499 * Utility: Supplies a zero-padded hex representation of a Unicode character (without 0x, \\u)
501 public static String hex(String s, String sep) {
505 result.append(hex(s.charAt(i)));