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.java108 checkNull(0, 1, 10); in main()
109 checkNull(-1, 0, 10); in main()
110 checkNull(0, 0, 10); in main()
111 checkNull(0, -1, 10); in main()
112 checkNull(-1, -1, -1); in main()
161 private static void checkNull(int start, int end, int radix) { in checkNull() method in ParsingTest
/libcore/ojluni/src/test/java/lang/Integer/
DParsingTest.java112 checkNull(0, 1, 10); in main()
113 checkNull(-1, 0, 10); in main()
114 checkNull(0, 0, 10); in main()
115 checkNull(0, -1, 10); in main()
116 checkNull(-1, -1, -1); in main()
165 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 …]