Searched refs:callOffsetByCodePoints (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/test/java/lang/Character/ |
D | Supplementary.java | 659 callOffsetByCodePoints(nullSeq, 0, 0, NullPointerException.class); in testExceptions01() 660 callOffsetByCodePoints(cs, -1, 1, IndexOutOfBoundsException.class); in testExceptions01() 661 callOffsetByCodePoints(cs, cs.length()+1, 1, IndexOutOfBoundsException.class); in testExceptions01() 662 callOffsetByCodePoints(cs, 0, cs.length()*2, IndexOutOfBoundsException.class); in testExceptions01() 663 callOffsetByCodePoints(cs, cs.length(), 1, IndexOutOfBoundsException.class); in testExceptions01() 664 callOffsetByCodePoints(cs, 0, -1, IndexOutOfBoundsException.class); in testExceptions01() 665 callOffsetByCodePoints(cs, cs.length(), -cs.length()*2, in testExceptions01() 667 callOffsetByCodePoints(cs, cs.length(), Integer.MIN_VALUE, in testExceptions01() 669 callOffsetByCodePoints(cs, 0, Integer.MAX_VALUE, IndexOutOfBoundsException.class); in testExceptions01() 720 callOffsetByCodePoints(nullArray, 0, 0, 0, 0, NullPointerException.class); in testExceptions02() [all …]
|