Home
last modified time | relevance | path

Searched refs:readUtf8Line (Results 1 – 7 of 7) sorted by relevance

/external/okhttp/okio/okio/src/test/java/okio/
DReadUtf8LineTest.java133 assertEquals("abc", source.readUtf8Line());
134 assertEquals("def", source.readUtf8Line());
135 assertEquals(null, source.readUtf8Line());
140 assertEquals("abc", source.readUtf8Line());
141 assertEquals("def", source.readUtf8Line());
142 assertEquals(null, source.readUtf8Line());
/external/okhttp/okio/okio/src/main/java/okio/
DRealBufferedSource.java185 @Override public String readUtf8Line() throws IOException { in readUtf8Line() method in RealBufferedSource
192 return buffer.readUtf8Line(newline); in readUtf8Line()
203 return buffer.readUtf8Line(newline); in readUtf8LineStrict()
DBufferedSource.java161 String readUtf8Line() throws IOException; in readUtf8Line() method
DBuffer.java594 @Override public String readUtf8Line() throws EOFException {
601 return readUtf8Line(newline);
612 return readUtf8Line(newline);
615 String readUtf8Line(long newline) throws EOFException {
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DWebPlatformUrlTestData.java89 for (String line; (line = source.readUtf8Line()) != null; ) { in load()
DCacheTest.java507 assertEquals("ABCDE", bodySource.readUtf8Line()); in testServerPrematureDisconnect()
509 bodySource.readUtf8Line(); in testServerPrematureDisconnect()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DDiskLruCacheTest.java1268 for (String line; (line = source.readUtf8Line()) != null; ) { in readJournalLines()