Home | History | Annotate | Download | only in text

Lines Matching defs:decomp

54         nfd = allModes.decomp;
268 String attempt = Normalizer.normalize(possible, Normalizer.DECOMP, 0);
372 String decomp = nfcImpl.getDecomposition(comp);
373 if (decomp == null) {
374 decomp = UTF16.valueOf(comp);
381 int decompCp = UTF16.charAt(decomp,0);
388 if (cp == decompCp) { // if equal, eat another cp from decomp
390 if (decompPos == decomp.length()) { // done, have all decomp characters!
395 decompCp = UTF16.charAt(decomp, decompPos);
408 // if the decomp class < the segment class, we fail
423 String trial = Normalizer.normalize(UTF16.valueOf(comp) + remainder, Normalizer.DECOMP, 0);
480 String decomp = Normalizer.normalize(cp, Normalizer.NFD);
481 //if (decomp.equals(istr)) continue;
486 for (int i = 0; i < decomp.length(); i += UTF16.getCharCount(component)) {
487 component = UTF16.charAt(decomp, i);