Home | History | Annotate | Download | only in text

Lines Matching defs:decomp

54         nfd = allModes.decomp;
264 String attempt = Normalizer.normalize(possible, Normalizer.DECOMP, 0);
368 String decomp = nfcImpl.getDecomposition(comp);
369 if (decomp == null) {
370 decomp = UTF16.valueOf(comp);
377 int decompCp = UTF16.charAt(decomp,0);
384 if (cp == decompCp) { // if equal, eat another cp from decomp
386 if (decompPos == decomp.length()) { // done, have all decomp characters!
391 decompCp = UTF16.charAt(decomp, decompPos);
404 // if the decomp class < the segment class, we fail
419 String trial = Normalizer.normalize(UTF16.valueOf(comp) + remainder, Normalizer.DECOMP, 0);
476 String decomp = Normalizer.normalize(cp, Normalizer.NFD);
477 //if (decomp.equals(istr)) continue;
482 for (int i = 0; i < decomp.length(); i += UTF16.getCharCount(component)) {
483 component = UTF16.charAt(decomp, i);