Home | History | Annotate | Download | only in normalizer

Lines Matching refs:ch

37     * @param   ch      the source character
40 public int getCanonicalClass(int ch) {
41 return canonicalClass.get(ch);
63 * @param ch the source character
66 public void getRecursiveDecomposition(boolean canonical, int ch, StringBuffer buffer) {
67 String decomp = decompose.get(ch);
68 if (decomp != null && !(canonical && isCompatibility.get(ch))) {
69 for (int i = 0; i < decomp.length(); i+=UTF16Util.codePointLength(ch)) {
70 ch = UTF16Util.nextCodePoint(decomp, i);
71 getRecursiveDecomposition(canonical, ch, buffer);
74 UTF16Util.appendCodePoint(buffer, ch);
97 boolean getExcluded (char ch) {
98 return isExcluded.get(ch);
104 String getRawDecompositionMapping (char ch) {
105 return decompose.get(ch);