Searched defs:readLine (Results 1 - 11 of 11) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DProcessManagerTest.java45 assertEquals(greeting, readLine(process));
117 assertEquals("/", readLine(process));
128 assertEquals("foo", readLine(process));
131 String readLine(Process process) throws IOException { method in class:ProcessManagerTest
134 return reader.readLine();
145 while ((line = reader.readLine()) != null) {
208 while (reader.readLine() != null) {
/libcore/ojluni/src/main/java/java/io/
H A DDataInput.java547 String readLine() throws IOException; method in interface:DataInput
H A DDataInputStream.java474 * See the general contract of the <code>readLine</code>
483 * <code>BufferedReader.readLine()</code> method. Programs that use the
497 * @see java.io.BufferedReader#readLine()
501 public final String readLine() throws IOException { method in class:DataInputStream
H A DLineNumberReader.java197 public String readLine() throws IOException { method in class:LineNumberReader
199 String l = super.readLine(skipLF);
H A DBufferedReader.java56 * invocation of read() or readLine() could cause bytes to be read from the
319 * @see java.io.LineNumberReader#readLine()
323 String readLine(boolean ignoreLF) throws IOException { method in class:BufferedReader
399 public String readLine() throws IOException { method in class:BufferedReader
400 return readLine(false);
579 nextLine = readLine();
H A DConsole.java55 * {@link #readLine()}, {@link #readPassword()}, {@link #format format()},
121 * <tt>{@link #readLine}</tt>.
242 public String readLine(String fmt, Object ... args) { method in class:Console
270 public String readLine() { method in class:Console
271 return readLine("");
473 * readLine()
H A DRandomAccessFile.java919 public final String readLine() throws IOException { method in class:RandomAccessFile
H A DObjectInputStream.java1057 public String readLine() throws IOException { method in class:ObjectInputStream
1058 return bin.readLine();
2873 public String readLine() throws IOException { method in class:ObjectInputStream.BlockDataInputStream
2874 return din.readLine(); // deprecated, not worth optimizing
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DDataInputStreamTest.java402 * java.io.DataInputStream#readLine()
409 String line = dis.readLine();
497 public String readLine() throws IOException { method in class:DataInputStreamTest.TestDataInputStream
/libcore/ojluni/src/main/java/java/util/
H A DProperties.java354 while ((limit = lr.readLine()) >= 0) {
422 int readLine() throws IOException { method in class:Properties.LineReader
/libcore/ojluni/src/main/java/java/util/jar/
H A DManifest.java210 while ((len = fis.readLine(lbuf)) != -1) {
369 public int readLine(byte[] b, int off, int len) throws IOException { method in class:Manifest.FastInputStream
408 public int readLine(byte[] b) throws IOException { method in class:Manifest.FastInputStream
409 return readLine(b, 0, b.length);

Completed in 555 milliseconds