Home
last modified time | relevance | path

Searched refs:checkIndexOutOfBoundsException (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/test/java/lang/Long/
DParsingTest.java99 checkIndexOutOfBoundsException("", 1, 1, 10); in testParsing()
100 checkIndexOutOfBoundsException("1000000", 10, 4, 10); in testParsing()
101 checkIndexOutOfBoundsException("1000000", 10, 2, Character.MAX_RADIX + 1); in testParsing()
102 checkIndexOutOfBoundsException("1000000", 10, 2, Character.MIN_RADIX - 1); in testParsing()
103 checkIndexOutOfBoundsException("1000000", -1, 2, Character.MAX_RADIX + 1); in testParsing()
104 checkIndexOutOfBoundsException("1000000", -1, 2, Character.MIN_RADIX - 1); in testParsing()
105 checkIndexOutOfBoundsException("-1", 0, 3, 10); in testParsing()
106 checkIndexOutOfBoundsException("-1", 2, 3, 10); in testParsing()
107 checkIndexOutOfBoundsException("-1", -1, 2, 10); in testParsing()
148 private static void checkIndexOutOfBoundsException(String val, int start, int end, int radix) { in checkIndexOutOfBoundsException() method in ParsingTest
/libcore/ojluni/src/test/java/lang/Integer/
DParsingTest.java108 checkIndexOutOfBoundsException("1000000", 10, 4, 10); in main()
109 checkIndexOutOfBoundsException("1000000", -1, 2, Character.MAX_RADIX + 1); in main()
110 checkIndexOutOfBoundsException("1000000", -1, 2, Character.MIN_RADIX - 1); in main()
111 checkIndexOutOfBoundsException("1000000", 10, 2, Character.MAX_RADIX + 1); in main()
112 checkIndexOutOfBoundsException("1000000", 10, 2, Character.MIN_RADIX - 1); in main()
113 checkIndexOutOfBoundsException("-1", 0, 3, 10); in main()
114 checkIndexOutOfBoundsException("-1", 2, 3, 10); in main()
115 checkIndexOutOfBoundsException("-1", -1, 2, 10); in main()
156 private static void checkIndexOutOfBoundsException(String val, int start, int end, int radix) { in checkIndexOutOfBoundsException() method in ParsingTest