Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/
DCharacter.java5318 int codePointOffset) { in offsetByCodePoints() argument
5325 if (codePointOffset >= 0) { in offsetByCodePoints()
5327 for (i = 0; x < length && i < codePointOffset; i++) { in offsetByCodePoints()
5333 if (i < codePointOffset) { in offsetByCodePoints()
5338 for (i = codePointOffset; x > 0 && i < 0; i++) { in offsetByCodePoints()
5385 int index, int codePointOffset) { in offsetByCodePoints() argument
5390 return offsetByCodePointsImpl(a, start, count, index, codePointOffset); in offsetByCodePoints()
5394 int index, int codePointOffset) { in offsetByCodePointsImpl() argument
5396 if (codePointOffset >= 0) { in offsetByCodePointsImpl()
5399 for (i = 0; x < limit && i < codePointOffset; i++) { in offsetByCodePointsImpl()
[all …]
DStringBuffer.java234 public synchronized int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument
235 return super.offsetByCodePoints(index, codePointOffset); in offsetByCodePoints()
DAbstractStringBuilder.java344 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument
349 index, codePointOffset); in offsetByCodePoints()
DString.java731 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument
736 return Character.offsetByCodePoints(this, index, codePointOffset); in offsetByCodePoints()
/libcore/ojluni/annotations/hiddenapi/java/lang/
DAbstractStringBuilder.java89 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument
DCharacter.java168 java.lang.CharSequence seq, int index, int codePointOffset) { in offsetByCodePoints() argument
173 char[] a, int start, int count, int index, int codePointOffset) { in offsetByCodePoints() argument
178 char[] a, int start, int count, int index, int codePointOffset) { in offsetByCodePointsImpl() argument
DString.java129 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DStringBuffer.annotated.java59 public synchronized int offsetByCodePoints(int index, int codePointOffset) { throw new RuntimeExcep… in offsetByCodePoints() argument
DStringBuilder.annotated.java140 public int offsetByCodePoints(int index, int codePointOffset) { throw new RuntimeException("Stub!")… in offsetByCodePoints() argument
DString.annotated.java84 public int offsetByCodePoints(int index, int codePointOffset) { throw new RuntimeException("Stub!")… in offsetByCodePoints() argument
DCharacter.annotated.java93 …nts(@libcore.util.NonNull java.lang.CharSequence seq, int index, int codePointOffset) { throw new … in offsetByCodePoints() argument
95 public static int offsetByCodePoints(char[] a, int start, int count, int index, int codePointOffset in offsetByCodePoints() argument