/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | LineNumberReaderTest.java | 59 lnr.readLine(); in test_getLineNumber() 60 lnr.readLine(); in test_getLineNumber() 74 line = lnr.readLine(); in test_markI() 77 .readLine())); in test_markI() 113 lnr.readLine(); in test_readLine() 114 line = lnr.readLine(); in test_readLine() 128 assertNotNull(reader.readLine()); in test_readLine() 129 assertNull(reader.readLine()); in test_readLine() 140 lnr.readLine(); in test_reset() 142 line = lnr.readLine(); in test_reset() [all …]
|
D | PrintWriterTest.java | 77 s = br.readLine(); in test_ConstructorLjava_io_OutputStream() 80 s = br.readLine(); in test_ConstructorLjava_io_OutputStream() 99 s = br.readLine(); in test_ConstructorLjava_io_OutputStreamZ() 104 s = br.readLine(); in test_ConstructorLjava_io_OutputStreamZ() 107 s = br.readLine(); in test_ConstructorLjava_io_OutputStreamZ() 254 s = br.readLine(); in test_print$C() 384 s = br.readLine(); in test_println() 386 s = br.readLine(); in test_println() 388 s = br.readLine(); in test_println() 408 s = br.readLine(); in test_println$C() [all …]
|
D | ConsoleTest.java | 87 String line = console.readLine(); in test_readLine() 92 String line = console.readLine("%d %s", 2, "Please input a line of string to test:"); in test_readLine_LString_LObject()
|
D | BufferedReaderTest.java | 65 assertEquals(line, bufferedReader.readLine()); in assertLines() 67 assertNull(bufferedReader.readLine()); in assertLines() 478 String r = br.readLine(); in test_readLine()
|
D | DataInputStreamTest.java | 409 String line = dis.readLine(); in test_readLine() 497 public String readLine() throws IOException { in readLine() method in DataInputStreamTest.TestDataInputStream
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldBufferedReaderTest.java | 223 line = br.readLine(); in test_readLine() 226 line = br.readLine(); in test_readLine() 229 line = br.readLine(); in test_readLine() 235 br.readLine(); in test_readLine() 329 assertEquals("1", r.readLine()); in test_readLine_all_line_endings() 330 assertEquals("2", r.readLine()); in test_readLine_all_line_endings() 331 assertEquals("3", r.readLine()); in test_readLine_all_line_endings() 332 assertEquals("4", r.readLine()); in test_readLine_all_line_endings() 333 assertNull(r.readLine()); in test_readLine_all_line_endings() 340 assertEquals("", r.readLine()); // The '\r' we read() didn't count. in test_readLine_interaction_with_read() [all …]
|
D | OldLineNumberReaderTest.java | 36 line = lnr.readLine(); in test_markI() 39 line.equals(lnr.readLine())); in test_markI() 125 lnr.readLine(); in test_readLine() 126 line = lnr.readLine(); in test_readLine() 133 lnr.readLine(); in test_readLine() 146 lnr.readLine(); in test_reset() 148 line = lnr.readLine(); in test_reset()
|
D | OldAndroidDataInputStreamTest.java | 60 assertEquals("AbCdEfGhIjKlM", d.readLine()); in testDataInputStream() 61 assertEquals("OpQ", d.readLine()); in testDataInputStream() 62 assertEquals("StUvWxYz", d.readLine()); in testDataInputStream()
|
D | OldDataInputStreamTest.java | 265 line = dis.readLine(); in test_readLine() 268 line = dis.readLine(); in test_readLine() 271 line = dis.readLine(); in test_readLine() 277 dis.readLine(); in test_readLine()
|
D | OldAndroidLineNumberReaderTest.java | 74 assertEquals("AbCdEfGhIjKlM", e.readLine()); in testLineNumberReader()
|
D | OldRandomAccessFileTest.java | 923 assertEquals("Test 1: Incorrect line read;", "Goodbye", raf.readLine()); in test_readLine() 924 assertEquals("Test 2: Incorrect line read;", "Cruel", raf.readLine()); in test_readLine() 925 assertEquals("Test 3: Incorrect line read;", "World", raf.readLine()); in test_readLine() 926 assertNull("Test 4: Incorrect line read; null expected.", raf.readLine()); in test_readLine() 930 raf.readLine(); in test_readLine()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | ProcessManagerTest.java | 45 assertEquals(greeting, readLine(process)); in testCat() 117 assertEquals("/", readLine(process)); in testPwd() 128 assertEquals("foo", readLine(process)); in testEnvironment() 131 String readLine(Process process) throws IOException { in readLine() method in ProcessManagerTest 134 return reader.readLine(); in readLine() 145 while ((line = reader.readLine()) != null) { in logErrors() 208 while (reader.readLine() != null) { in countLines()
|
/libcore/luni/src/main/java/java/io/ |
D | Console.java | 100 public String readLine() { in readLine() method in Console 102 return reader.readLine(); in readLine() 122 public String readLine(String format, Object... args) { in readLine() method in Console 125 return readLine(); in readLine()
|
D | LineNumberReader.java | 184 public String readLine() throws IOException { in readLine() method in LineNumberReader 190 String result = super.readLine(); in readLine()
|
D | DataInput.java | 167 public abstract String readLine() throws IOException; in readLine() method
|
D | DataInputStream.java | 112 public final String readLine() throws IOException { in readLine() method in DataInputStream
|
D | BufferedReader.java | 375 public String readLine() throws IOException { in readLine() method in BufferedReader
|
/libcore/luni/src/test/java/libcore/io/ |
D | StrictLineReaderTest.java | 40 String line = lineReader.readLine(); in testLineReaderConsistencyWithReadAsciiLine() 49 lineReader.readLine(); in testLineReaderConsistencyWithReadAsciiLine()
|
/libcore/luni/src/main/java/libcore/io/ |
D | StrictLineReader.java | 151 public String readLine() throws IOException { in readLine() method in StrictLineReader 209 String intString = readLine(); in readInt()
|
/libcore/luni/src/main/java/libcore/net/url/ |
D | FtpURLConnection.java | 359 readLine(); /* Skip the rest of the first line */ in getReply() 408 private String readLine() throws IOException { in readLine() method in FtpURLConnection 418 String line = readLine(); in readMultiLine()
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
D | XMLReaderFactory.java | 130 className = reader.readLine (); in createXMLReader()
|
/libcore/luni/src/test/java/libcore/java/math/ |
D | CSVTest.java | 49 while ((line = br.readLine()) != null) { in TestCSVInputs()
|
/libcore/luni/src/main/java/java/util/ |
D | ServiceLoader.java | 226 while ((line = reader.readLine()) != null) { in readClass()
|
/libcore/luni/src/main/java/javax/xml/datatype/ |
D | FactoryFinder.java | 260 factoryClassName = rd.readLine(); in findJarServiceProvider()
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | OldURLTest.java | 138 while ((nextline = buf.readLine()) != null) { in testSetURLStreamHandlerFactory() 290 while ((inputLine = dis.readLine()) != null) { in testOpenStream() 309 while ((inputLine = dis.readLine()) != null) { in testOpenStream()
|