Searched defs:exhausted (Results 1 - 7 of 7) sorted by relevance

/external/okhttp/okio/okio/src/test/java/okio/
H A DGzipSourceTest.java163 assertFalse(exhaustableSource.exhausted);
165 assertTrue(exhaustableSource.exhausted);
213 private boolean exhausted; field in class:GzipSourceTest.ExhaustableSource
221 if (result == -1) exhausted = true;
/external/okhttp/okio/okio/src/main/java/okio/
H A DBufferedSource.java33 * until there are bytes to read or the source is definitely exhausted.
35 boolean exhausted() throws IOException; method in interface:BufferedSource
39 * an {@link java.io.EOFException} if the source is exhausted before the
46 * expanding it as necessary. Returns false if the source is exhausted before
92 * {@link java.io.EOFException} if the source is exhausted before the
111 * Returns the number of bytes read, or -1 if this source is exhausted.
123 * {@code offset}. Returns the number of bytes read, or -1 if this source is exhausted.
137 * exhausted.
158 * source is exhausted. Use this for human-generated data, where a trailing
178 * <p>If this source is exhausted befor
[all...]
H A DRealBufferedSource.java58 @Override public boolean exhausted() throws IOException { method in class:RealBufferedSource
60 return buffer.exhausted() && source.read(buffer, Segment.SIZE) == -1;
109 // The underlying source is exhausted. Copy the bytes we got before rethrowing.
137 // The underlying source is exhausted. Copy the bytes we got before rethrowing.
H A DBuffer.java97 @Override public boolean exhausted() { method in class:Buffer
/external/skia/fuzz/
H A Dfuzz.cpp582 bool Fuzz::exhausted() { function in class:Fuzz
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 152 milliseconds