Searched refs:testOffsetByCodePoints (Results 1 - 4 of 4) sorted by relevance

/openjdk9/jdk/test/java/lang/String/CompactString/
H A DOffsetByCodePoints.java56 public void testOffsetByCodePoints(String str, int index, method in class:OffsetByCodePoints
/openjdk9/jdk/test/java/lang/StringBuffer/
H A DSupplementary.java299 testOffsetByCodePoints(null, 0, 0, NullPointerException.class);
300 testOffsetByCodePoints(sb, -1, length, IndexOutOfBoundsException.class);
301 testOffsetByCodePoints(sb, 0, length+1, IndexOutOfBoundsException.class);
302 testOffsetByCodePoints(sb, 1, -2, IndexOutOfBoundsException.class);
303 testOffsetByCodePoints(sb, length, length-1, IndexOutOfBoundsException.class);
304 testOffsetByCodePoints(sb, length, -(length+1), IndexOutOfBoundsException.class);
359 static void testOffsetByCodePoints(StringBuffer sb, int index, int offset, method in class:Supplementary
/openjdk9/jdk/test/java/lang/StringBuilder/
H A DSupplementary.java300 testOffsetByCodePoints(null, 0, 0, NullPointerException.class);
301 testOffsetByCodePoints(sb, -1, length, IndexOutOfBoundsException.class);
302 testOffsetByCodePoints(sb, 0, length+1, IndexOutOfBoundsException.class);
303 testOffsetByCodePoints(sb, 1, -2, IndexOutOfBoundsException.class);
304 testOffsetByCodePoints(sb, length, length-1, IndexOutOfBoundsException.class);
305 testOffsetByCodePoints(sb, length, -(length+1), IndexOutOfBoundsException.class);
373 static void testOffsetByCodePoints(StringBuilder sb, int index, int offset, method in class:Supplementary
/openjdk9/jdk/test/java/lang/String/
H A DSupplementary.java479 testOffsetByCodePoints(null, 0, 0, NullPointerException.class);
480 testOffsetByCodePoints(str, -1, length, IndexOutOfBoundsException.class);
481 testOffsetByCodePoints(str, 0, length+1, IndexOutOfBoundsException.class);
482 testOffsetByCodePoints(str, 1, -2, IndexOutOfBoundsException.class);
483 testOffsetByCodePoints(str, length, length-1, IndexOutOfBoundsException.class);
484 testOffsetByCodePoints(str, length, -(length+1), IndexOutOfBoundsException.class);
661 static void testOffsetByCodePoints(String str, int index, int offset, method in class:Supplementary

Completed in 46 milliseconds