Home
last modified time | relevance | path

Searched refs:checkNull (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/lang/Long/
DParsingTest.java109 checkNull(0, 1, 10); in testParsing()
110 checkNull(-1, 0, 10); in testParsing()
111 checkNull(0, 0, 10); in testParsing()
112 checkNull(0, -1, 10); in testParsing()
113 checkNull(-1, -1, -1); in testParsing()
162 private static void checkNull(int start, int end, int radix) { in checkNull() method in ParsingTest
/libcore/ojluni/src/test/java/lang/Integer/
DParsingTest.java117 checkNull(0, 1, 10); in main()
118 checkNull(-1, 0, 10); in main()
119 checkNull(0, 0, 10); in main()
120 checkNull(0, -1, 10); in main()
121 checkNull(-1, -1, -1); in main()
170 private static void checkNull(int start, int end, int radix) { in checkNull() method in ParsingTest
/libcore/ojluni/src/test/java/util/Base64/
DTestBase64.java108 checkNull(() -> Base64.getMimeEncoder(10, null)); in main()
296 checkNull(() -> enc.encode(ba_null)); in testNull()
297 checkNull(() -> enc.encodeToString(ba_null)); in testNull()
298 checkNull(() -> enc.encode(ba_null, new byte[10])); in testNull()
299 checkNull(() -> enc.encode(new byte[10], ba_null)); in testNull()
300 checkNull(() -> enc.encode(bb_null)); in testNull()
301 checkNull(() -> enc.wrap((OutputStream)null)); in testNull()
305 checkNull(() -> dec.decode(ba_null)); in testNull()
306 checkNull(() -> dec.decode(str_null)); in testNull()
307 checkNull(() -> dec.decode(ba_null, new byte[10])); in testNull()
[all …]