/libcore/ojluni/src/main/java/java/lang/ |
D | Character.java | 5318 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 …]
|
D | StringBuffer.java | 234 public synchronized int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument 235 return super.offsetByCodePoints(index, codePointOffset); in offsetByCodePoints()
|
D | AbstractStringBuilder.java | 344 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument 349 index, codePointOffset); in offsetByCodePoints()
|
D | String.java | 731 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/ |
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 | 84 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
|