Searched refs:codePoints (Results 1 - 2 of 2) sorted by path

/libcore/luni/src/main/java/java/lang/
H A DCharacter.java2230 int codePoints = codePointOffset;
2232 while (codePoints > 0) {
2233 codePoints--;
2248 int codePoints = -codePointOffset;
2250 while (codePoints > 0) {
2251 codePoints--;
2311 int codePoints = codePointOffset;
2313 while (codePoints > 0) {
2314 codePoints--;
2329 int codePoints
[all...]
H A DString.java506 * if {@code codePoints == null}.
508 * if any of the elements of {@code codePoints} are not valid
512 * of {@code codePoints}.
515 public String(int[] codePoints, int offset, int count) { argument
516 if (codePoints == null) {
517 throw new NullPointerException("codePoints == null");
519 if ((offset | count) < 0 || count > codePoints.length - offset) {
520 throw failedBoundsCheck(codePoints.length, offset, count);
527 c += Character.toChars(codePoints[i], this.value, c);

Completed in 110 milliseconds