Home
last modified time | relevance | path

Searched refs:codePointOffset (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DUCharacter.java6280 public static int offsetByCodePoints(CharSequence text, int index, int codePointOffset) { in offsetByCodePoints() argument
6286 if (codePointOffset < 0) { in offsetByCodePoints()
6287 while (++codePointOffset <= 0) { in offsetByCodePoints()
6292 if (++codePointOffset > 0) { in offsetByCodePoints()
6300 while (--codePointOffset >= 0) { in offsetByCodePoints()
6305 if (--codePointOffset < 0) { in offsetByCodePoints()
6329 int codePointOffset) { in offsetByCodePoints() argument
6338 if (codePointOffset < 0) { in offsetByCodePoints()
6339 while (++codePointOffset <= 0) { in offsetByCodePoints()
6349 if (++codePointOffset > 0) { in offsetByCodePoints()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DUCharacter.java5612 public static int offsetByCodePoints(CharSequence text, int index, int codePointOffset) { in offsetByCodePoints() argument
5618 if (codePointOffset < 0) { in offsetByCodePoints()
5619 while (++codePointOffset <= 0) { in offsetByCodePoints()
5624 if (++codePointOffset > 0) { in offsetByCodePoints()
5632 while (--codePointOffset >= 0) { in offsetByCodePoints()
5637 if (--codePointOffset < 0) { in offsetByCodePoints()
5660 int codePointOffset) { in offsetByCodePoints() argument
5669 if (codePointOffset < 0) { in offsetByCodePoints()
5670 while (++codePointOffset <= 0) { in offsetByCodePoints()
5680 if (++codePointOffset > 0) { in offsetByCodePoints()
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
DStringBuilder.java698 public int offsetByCodePoints (int index, int codePointOffset) { in offsetByCodePoints() argument
699 return Character.offsetByCodePoints(chars, 0, length, index, codePointOffset); in offsetByCodePoints()