Home | History | Annotate | Download | only in normalizer

Lines Matching defs:decomp

108                 errln("ERROR: " + hex(ch) + " has identical decomp");
111 errln("ERROR: Normalizer decomp for " + hex(ch) + " (" + hex(normDecomp) + ")"
112 + " != iter decomp (" + hex(iterDecomp) + ")" );
122 String decomp = Normalizer.decompose(xString, compat);
123 if (!decomp.equals(xString)) {
124 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
141 String decomp = iter.decomposition();
142 String comp = Normalizer.compose(decomp, compat);
150 if (decomp.length() == 4) continue;
153 errln("ERROR: Round trip invalid: " + hex(chStr) + " --> " + hex(decomp)
156 errln(" char decomp is '" + decomp + "'");