HomeSort by relevance Sort by last modified time
    Searched defs:readLine (Results 26 - 50 of 65) sorted by null

12 3

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
BufferedReaderTest.java 39 * The spec says that BufferedReader.readLine() considers only "\r", "\n"
65 assertEquals(line, bufferedReader.readLine());
67 assertNull(bufferedReader.readLine());
472 * @tests java.io.BufferedReader#readLine()
475 // Test for method java.lang.String java.io.BufferedReader.readLine()
478 String r = br.readLine();
479 assertEquals("readLine returned incorrect string", "Test_All_Tests", r
482 fail("Exception during readLine test");
DataInputStreamTest.java 402 * @tests java.io.DataInputStream#readLine()
409 String line = dis.readLine();
497 public String readLine() throws IOException {
PrintWriterTest.java 77 s = br.readLine();
80 s = br.readLine();
99 s = br.readLine();
104 s = br.readLine();
107 s = br.readLine();
254 s = br.readLine();
384 s = br.readLine();
386 s = br.readLine();
388 s = br.readLine();
408 s = br.readLine();
    [all...]
ObjectInputStreamTest.java 400 * @tests java.io.ObjectInputStream#readLine()
407 ois.readLine();
409 .readLine());
    [all...]
  /external/javassist/src/main/javassist/tools/web/
Webserver.java 190 String cmd = readLine(in);
210 private String readLine(InputStream in) throws IOException {
  /frameworks/base/core/java/com/android/internal/net/
NetworkStatsFactory.java 125 while ((line = reader.readLine()) != null) {
207 reader.readLine();
208 reader.readLine();
212 while ((line = reader.readLine()) != null) {
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 359 readLine(); /* Skip the rest of the first line */
408 private String readLine() throws IOException {
418 String line = readLine();
  /packages/apps/Email/src/com/android/email/mail/transport/
MailTransport.java 339 public String readLine() throws IOException {
  /external/antlr/src/org/antlr/runtime/debug/
DebugEventSocketProxy.java 108 in.readLine();
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 457 public final String readLine() throws IOException {
ObjectInputStream.java     [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 284 public String readLine() throws IOException {
334 * list, for subsequent calls to readLine(). If the string does not match, we assert
368 * Reads from the same input buffer as readLine()
381 String next = readLine();
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
SdkUpdaterNoWindow.java 372 login = readLine(readBuffer);
374 password = readLine(readBuffer);
392 private String readLine(byte[] buffer) throws IOException {
  /external/webkit/Tools/DumpRenderTree/qt/
DumpRenderTreeQt.cpp 658 void DumpRenderTree::readLine()
670 QByteArray line = m_stdin->readLine().trimmed();
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldRandomAccessFileTest.java 914 * java.io.RandomAccessFile#readLine()
917 // Test for method java.lang.String java.io.RandomAccessFile.readLine()
923 assertEquals("Test 1: Incorrect line read;", "Goodbye", raf.readLine());
924 assertEquals("Test 2: Incorrect line read;", "Cruel", raf.readLine());
925 assertEquals("Test 3: Incorrect line read;", "World", raf.readLine());
926 assertNull("Test 4: Incorrect line read; null expected.", raf.readLine());
930 raf.readLine();
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectInputStreamTest.java 316 line = ois.readLine();
319 line = ois.readLine();
322 line = ois.readLine();
336 ois.readLine();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertiesTest.java     [all...]
  /frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java 116 String line = input.readLine();
138 line = input.readLine();
146 length = Integer.parseInt(input.readLine(), 16);
150 input.readLine();
151 length = Integer.parseInt(input.readLine(), 16);
153 input.readLine();
    [all...]
  /libcore/luni/src/test/java/libcore/net/http/
HttpResponseCacheTest.java 471 assertEquals("ABCDE", reader.readLine());
473 reader.readLine();
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 399 * java.io.ObjectInputStream#readLine()
406 ois.readLine();
408 .readLine());
    [all...]
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
Main.java     [all...]
  /prebuilt/common/http-client/
httpcore-4.1.jar 
httpclient-4.1.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilt/sdk/10/
android.jar 

Completed in 2875 milliseconds

12 3