Home | History | Annotate | Download | only in normalizer

Lines Matching refs:ch

34     * @param   ch      the source character
37 public int getCanonicalClass(int ch) {
38 return canonicalClass.get(ch);
60 * @param ch the source character
63 public void getRecursiveDecomposition(boolean canonical, int ch, StringBuffer buffer) {
64 String decomp = decompose.get(ch);
65 if (decomp != null && !(canonical && isCompatibility.get(ch))) {
66 for (int i = 0; i < decomp.length(); i+=UTF16Util.codePointLength(ch)) {
67 ch = UTF16Util.nextCodePoint(decomp, i);
68 getRecursiveDecomposition(canonical, ch, buffer);
71 UTF16Util.appendCodePoint(buffer, ch);
94 boolean getExcluded (char ch) {
95 return isExcluded.get(ch);
101 String getRawDecompositionMapping (char ch) {
102 return decompose.get(ch);