Lines Matching defs:NFD

101  * <p>Its advantage for a process like collation is that all NFD and most NFC texts
103 * normalized (NFD) for such a process. The FCD quick check will return YES for
106 * <p>normalize(FCD) may be implemented with NFD.
111 * <p>ICU collation performs either NFD or FCD normalization automatically if
302 public static final Mode NFD = new NFDMode();
412 * @deprecated ICU 2.8. Use Normalizer.NFD
413 * @see #NFD
416 public static final Mode DECOMP = NFD;
661 return (compat ? NFKD : NFD).getNormalizer2(options);
749 * rules and if false will be decomposed according to NFD
764 * rules and if false will be decomposed according to NFD
782 * NFD rules.
806 * NFD rules.
850 * Normalizer.NFD, Normalizer.NFC, Normalizer.NFKC,
866 * Normalizer.NFD, Normalizer.NFC, Normalizer.NFKC,
891 * Normalizer.NFD, Normalizer.NFC, Normalizer.NFKC,
922 if(mode == NFD && options == 0) {
948 * @param mode normalization format (Normalizer.NFC,Normalizer.NFD,
971 * @param mode normalization format (Normalizer.NFC,Normalizer.NFD,
989 * @param mode normalization format (Normalizer.NFC,Normalizer.NFD,
1016 * @param mode normalization format (Normalizer.NFC,Normalizer.NFD,
1038 * For NFD, NFKD, and FCD, both functions work exactly the same.
1066 * For NFD, NFKD, and FCD, both functions work exactly the same.
1104 * forms (NFD or NFC) being identical.
1115 * strcmp[CodePointOrder](foldCase(NFD(s1)), foldCase(NFD(s2)))
1171 * forms (NFD or NFC) being identical.
1182 * strcmp[CodePointOrder](foldCase(NFD(s1)), foldCase(NFD(s2)))
1707 * <li>{@link #NFD} - Unicode canonical decomposition
1954 * NFD(toCasefold(NFD(X))) = NFD(toCasefold(NFD(Y)))
1964 * full NFD first. This is because in the Turkic case precomposed characters
1972 n2=NFD.getNormalizer2(normOptions);
1983 * If both strings were not in FCD, then they were both NFD'ed,
2013 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
2014 * where code point order, NFD and foldCase are all optional.
2079 * The API function may also NFD the input and turn off decomposition.
2080 * This requires that case-folding does not un-NFD strings either.
2087 * would be a partial NFD before the case folding, which does not work.