Lines Matching refs:callCodePoint

636         callCodePoint(At, nullSeq, 0, NullPointerException.class);  in testExceptions01()
637 callCodePoint(At, cs, -1, IndexOutOfBoundsException.class); in testExceptions01()
638 callCodePoint(At, cs, cs.length(), IndexOutOfBoundsException.class); in testExceptions01()
639 callCodePoint(At, cs, cs.length()*3, IndexOutOfBoundsException.class); in testExceptions01()
642 callCodePoint(Before, nullSeq, 0, NullPointerException.class); in testExceptions01()
643 callCodePoint(Before, cs, -1, IndexOutOfBoundsException.class); in testExceptions01()
644 callCodePoint(Before, cs, 0, IndexOutOfBoundsException.class); in testExceptions01()
645 callCodePoint(Before, cs, cs.length()+1, IndexOutOfBoundsException.class); in testExceptions01()
678 callCodePoint(At, nullArray, 0, NullPointerException.class); in testExceptions02()
679 callCodePoint(At, a, -1, IndexOutOfBoundsException.class); in testExceptions02()
680 callCodePoint(At, a, a.length, IndexOutOfBoundsException.class); in testExceptions02()
681 callCodePoint(At, a, a.length*3, IndexOutOfBoundsException.class); in testExceptions02()
682 callCodePoint(Before, nullArray, 0, NullPointerException.class); in testExceptions02()
683 callCodePoint(Before, a, -1, IndexOutOfBoundsException.class); in testExceptions02()
684 callCodePoint(Before, a, 0, IndexOutOfBoundsException.class); in testExceptions02()
685 callCodePoint(Before, a, a.length+1, IndexOutOfBoundsException.class); in testExceptions02()
688 callCodePoint(At, nullArray, 0, 1, NullPointerException.class); in testExceptions02()
689 callCodePoint(At, a, 0, -1, IndexOutOfBoundsException.class); in testExceptions02()
690 callCodePoint(At, a, 0, 0, IndexOutOfBoundsException.class); in testExceptions02()
691 callCodePoint(At, a, 0, a.length+1, IndexOutOfBoundsException.class); in testExceptions02()
692 callCodePoint(At, a, 2, 1, IndexOutOfBoundsException.class); in testExceptions02()
693 callCodePoint(At, a, -1, 1, IndexOutOfBoundsException.class); in testExceptions02()
694 callCodePoint(At, a, a.length, 1, IndexOutOfBoundsException.class); in testExceptions02()
695 callCodePoint(At, a, a.length*3, 1, IndexOutOfBoundsException.class); in testExceptions02()
696 callCodePoint(Before, nullArray, 1, 0, NullPointerException.class); in testExceptions02()
697 callCodePoint(Before, a, 2, -1, IndexOutOfBoundsException.class); in testExceptions02()
698 callCodePoint(Before, a, 2, 2, IndexOutOfBoundsException.class); in testExceptions02()
699 callCodePoint(Before, a, 2, 3, IndexOutOfBoundsException.class); in testExceptions02()
700 callCodePoint(Before, a, 2, a.length, IndexOutOfBoundsException.class); in testExceptions02()
701 callCodePoint(Before, a, -1, -1, IndexOutOfBoundsException.class); in testExceptions02()
702 callCodePoint(Before, a, 0, 0, IndexOutOfBoundsException.class); in testExceptions02()
703 callCodePoint(Before, a, a.length+1, a.length-1, IndexOutOfBoundsException.class); in testExceptions02()
769 private static void callCodePoint(boolean isAt, CharSequence cs, int index, in callCodePoint() method in Supplementary
784 private static void callCodePoint(boolean isAt, char[] a, int index, in callCodePoint() method in Supplementary
799 private static void callCodePoint(boolean isAt, char[] a, int index, int limit, in callCodePoint() method in Supplementary