Searched refs:codePoints (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DCharacter.java2188 int codePoints = codePointOffset;
2190 while (codePoints > 0) {
2191 codePoints--;
2206 int codePoints = -codePointOffset;
2208 while (codePoints > 0) {
2209 codePoints--;
2269 int codePoints = codePointOffset;
2271 while (codePoints > 0) {
2272 codePoints--;
2287 int codePoints
[all...]
/libcore/libart/src/main/java/java/lang/
H A DString.java454 * if {@code codePoints == null}.
456 * if any of the elements of {@code codePoints} are not valid
460 * of {@code codePoints}.
463 public String(int[] codePoints, int offset, int count) { argument
464 if (codePoints == null) {
465 throw new NullPointerException("codePoints == null");
467 if ((offset | count) < 0 || count > codePoints.length - offset) {
468 throw failedBoundsCheck(codePoints.length, offset, count);
475 c += Character.toChars(codePoints[i], this.value, c);
/libcore/libdvm/src/main/java/java/lang/
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 21 milliseconds