/libcore/ojluni/src/test/java/lang/String/CompactString/ |
D | OffsetByCodePoints.java | 58 int codePointOffset, int expected) { in testOffsetByCodePoints() argument 64 codePointOffset), in testOffsetByCodePoints() 69 codePointOffset, source)); in testOffsetByCodePoints()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | StringBuffer.java | 281 public synchronized int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument 282 return super.offsetByCodePoints(index, codePointOffset); in offsetByCodePoints()
|
D | Character.java | 9381 int codePointOffset) { in offsetByCodePoints() argument 9388 if (codePointOffset >= 0) { in offsetByCodePoints() 9390 for (i = 0; x < length && i < codePointOffset; i++) { in offsetByCodePoints() 9396 if (i < codePointOffset) { in offsetByCodePoints() 9401 for (i = codePointOffset; x > 0 && i < 0; i++) { in offsetByCodePoints() 9448 int index, int codePointOffset) { in offsetByCodePoints() argument 9453 return offsetByCodePointsImpl(a, start, count, index, codePointOffset); in offsetByCodePoints() 9457 int index, int codePointOffset) { in offsetByCodePointsImpl() argument 9459 if (codePointOffset >= 0) { in offsetByCodePointsImpl() 9462 for (i = 0; x < limit && i < codePointOffset; i++) { in offsetByCodePointsImpl() [all …]
|
D | AbstractStringBuilder.java | 431 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument 436 index, codePointOffset); in offsetByCodePoints()
|
D | String.java | 989 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument 993 return Character.offsetByCodePoints(this, index, codePointOffset); in offsetByCodePoints()
|
/libcore/ojluni/annotations/hiddenapi/java/lang/ |
D | AbstractStringBuilder.java | 89 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument
|
D | Character.java | 168 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
|
D | String.java | 129 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/ |
D | StringBuffer.annotated.java | 59 public synchronized int offsetByCodePoints(int index, int codePointOffset) { throw new RuntimeExcep… in offsetByCodePoints() argument
|
D | StringBuilder.annotated.java | 140 public int offsetByCodePoints(int index, int codePointOffset) { throw new RuntimeException("Stub!")… in offsetByCodePoints() argument
|
D | String.annotated.java | 86 public int offsetByCodePoints(int index, int codePointOffset) { throw new RuntimeException("Stub!")… in offsetByCodePoints() argument
|
D | Character.annotated.java | 93 …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
|
/libcore/ojluni/annotations/flagged_api/java/lang/ |
D | Character.annotated.java | 94 public static int offsetByCodePoints(java.lang.CharSequence seq, int index, int codePointOffset) { … in offsetByCodePoints() argument 96 public static int offsetByCodePoints(char[] a, int start, int count, int index, int codePointOffset… in offsetByCodePoints() argument
|