Home | History | Annotate | Download | only in normalizer

Lines Matching defs:decomp

105                 errln("ERROR: " + hex(ch) + " has identical decomp");
108 errln("ERROR: Normalizer decomp for " + hex(ch) + " (" + hex(normDecomp) + ")"
109 + " != iter decomp (" + hex(iterDecomp) + ")" );
119 String decomp = Normalizer.decompose(xString, compat);
120 if (!decomp.equals(xString)) {
121 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")"
138 String decomp = iter.decomposition();
139 String comp = Normalizer.compose(decomp, compat);
147 if (decomp.length() == 4) continue;
150 errln("ERROR: Round trip invalid: " + hex(chStr) + " --> " + hex(decomp)
153 errln(" char decomp is '" + decomp + "'");