Searched refs:callCodePoint (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/test/java/lang/Character/ |
D | Supplementary.java | 641 callCodePoint(At, nullSeq, 0, NullPointerException.class); in testExceptions01() 642 callCodePoint(At, cs, -1, IndexOutOfBoundsException.class); in testExceptions01() 643 callCodePoint(At, cs, cs.length(), IndexOutOfBoundsException.class); in testExceptions01() 644 callCodePoint(At, cs, cs.length()*3, IndexOutOfBoundsException.class); in testExceptions01() 647 callCodePoint(Before, nullSeq, 0, NullPointerException.class); in testExceptions01() 648 callCodePoint(Before, cs, -1, IndexOutOfBoundsException.class); in testExceptions01() 649 callCodePoint(Before, cs, 0, IndexOutOfBoundsException.class); in testExceptions01() 650 callCodePoint(Before, cs, cs.length()+1, IndexOutOfBoundsException.class); in testExceptions01() 683 callCodePoint(At, nullArray, 0, NullPointerException.class); in testExceptions02() 684 callCodePoint(At, a, -1, IndexOutOfBoundsException.class); in testExceptions02() [all …]
|