Searched refs:nullCharArray (Results 1 – 4 of 4) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | BufferedWriterTest.java | 158 char[] nullCharArray = null; in test_write_$CII_Exception() local 161 bWriter.write(nullCharArray, -1, -1); in test_write_$CII_Exception() 168 bWriter.write(nullCharArray, -1, 0); in test_write_$CII_Exception() 175 bWriter.write(nullCharArray, 0, -1); in test_write_$CII_Exception() 182 bWriter.write(nullCharArray, 0, 0); in test_write_$CII_Exception() 204 bWriter.write(nullCharArray, -1, -1); in test_write_$CII_Exception()
|
D | BufferedReaderTest.java | 378 char[] nullCharArray = null; in test_read_$CII_Exception() local 382 br.read(nullCharArray, -1, -1); in test_read_$CII_Exception() 389 br.read(nullCharArray, -1, 0); in test_read_$CII_Exception() 396 br.read(nullCharArray, 0, -1); in test_read_$CII_Exception() 403 br.read(nullCharArray, 0, 0); in test_read_$CII_Exception() 410 br.read(nullCharArray, 0, 1); in test_read_$CII_Exception() 451 br.read(nullCharArray, -1, -1); in test_read_$CII_Exception()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldPushbackReaderTest.java | 164 char[] nullCharArray = null; in test_read_$CII_Exception() local 168 pbr.read(nullCharArray, 0, 1); in test_read_$CII_Exception()
|
D | OldBufferedWriterTest.java | 147 char[] nullCharArray = null; in test_write$CII_Exception() local 151 bw.write(nullCharArray, 0, 1); in test_write$CII_Exception()
|