Searched refs:codePointOffset (Results 1 – 4 of 4) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/ |
D | Character.java | 5307 int codePointOffset) { in offsetByCodePoints() argument 5314 if (codePointOffset >= 0) { in offsetByCodePoints() 5316 for (i = 0; x < length && i < codePointOffset; i++) { in offsetByCodePoints() 5322 if (i < codePointOffset) { in offsetByCodePoints() 5327 for (i = codePointOffset; x > 0 && i < 0; i++) { in offsetByCodePoints() 5374 int index, int codePointOffset) { in offsetByCodePoints() argument 5379 return offsetByCodePointsImpl(a, start, count, index, codePointOffset); in offsetByCodePoints() 5383 int index, int codePointOffset) { in offsetByCodePointsImpl() argument 5385 if (codePointOffset >= 0) { in offsetByCodePointsImpl() 5388 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 | 345 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument 350 index, codePointOffset); in offsetByCodePoints()
|
D | String.java | 691 public int offsetByCodePoints(int index, int codePointOffset) { in offsetByCodePoints() argument 695 return Character.offsetByCodePoints(this, index, codePointOffset); in offsetByCodePoints()
|