Home
last modified time | relevance | path

Searched refs:codePointLength (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DUnicodeNormalizer.java103 i+=UTF16Util.codePointLength(ch); in internalDecompose()
112 j+=UTF16Util.codePointLength(ch); in internalDecompose()
120 for (; k > 0; k -= UTF16Util.codePointLength(ch2)) { in internalDecompose()
140 int compPos = UTF16Util.codePointLength(starterCh); in internalCompose()
146 for (int decompPos = UTF16Util.codePointLength(starterCh); decompPos < target.length(); ) { in internalCompose()
148 decompPos += UTF16Util.codePointLength(ch); in internalCompose()
162 compPos += UTF16Util.codePointLength(ch); in internalCompose()
DNormalizerData.java64 for (int i = 0; i < decomp.length(); i+=UTF16Util.codePointLength(ch)) { in getRecursiveDecomposition()
DNormalizerBuilder.java203 UTF16Util.codePointLength(first)); in buildDecompositionTables()
426 UTF16Util.codePointLength(first)); in setMinimalDecomp()
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DUTF16Util.java98 public static final int codePointLength(int c) { in codePointLength() method in UTF16Util
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DCharSequences.java76 public int codePointLength(CharSequence s) { in codePointLength() method in CharSequences