Searched refs:codePointOffset (Results 1 – 3 of 3) sorted by relevance
6280 public static int offsetByCodePoints(CharSequence text, int index, int codePointOffset) { in offsetByCodePoints() argument6286 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() argument6338 if (codePointOffset < 0) { in offsetByCodePoints()6339 while (++codePointOffset <= 0) { in offsetByCodePoints()6349 if (++codePointOffset > 0) { in offsetByCodePoints()[all …]
5612 public static int offsetByCodePoints(CharSequence text, int index, int codePointOffset) { in offsetByCodePoints() argument5618 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() argument5669 if (codePointOffset < 0) { in offsetByCodePoints()5670 while (++codePointOffset <= 0) { in offsetByCodePoints()5680 if (++codePointOffset > 0) { in offsetByCodePoints()[all …]
698 public int offsetByCodePoints (int index, int codePointOffset) { in offsetByCodePoints() argument699 return Character.offsetByCodePoints(chars, 0, length, index, codePointOffset); in offsetByCodePoints()