HomeSort by relevance Sort by last modified time
    Searched refs:exhausted (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/okhttp/okio/okio/src/test/java/okio/
Utf8Test.java 103 assertTrue(buffer.exhausted());
114 assertFalse(buffer.exhausted()); // Prefix byte wasn't consumed.
126 assertTrue(buffer.exhausted());
135 assertTrue(buffer.exhausted());
143 assertTrue(buffer.exhausted());
150 assertTrue(buffer.exhausted());
153 assertTrue(buffer.exhausted());
161 assertTrue(buffer.exhausted());
208 assertTrue(buffer.exhausted());
GzipSourceTest.java 163 assertFalse(exhaustableSource.exhausted);
165 assertTrue(exhaustableSource.exhausted);
213 private boolean exhausted; field in class:GzipSourceTest.ExhaustableSource
221 if (result == -1) exhausted = true;
BufferedSourceTest.java 126 assertTrue(source.exhausted());
135 assertTrue(source.exhausted());
144 assertTrue(source.exhausted());
152 assertTrue(source.exhausted());
162 assertTrue(source.exhausted());
172 assertTrue(source.exhausted());
182 assertTrue(source.exhausted());
193 assertTrue(source.exhausted());
204 assertTrue(source.exhausted());
215 assertTrue(source.exhausted());
    [all...]
ReadUtf8LineTest.java 121 assertTrue(source.exhausted());
  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSource.java 33 * 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 before a complete code point can be read, this throws an {@lin
    [all...]
InflaterSource.java 82 if (sourceExhausted) throw new EOFException("source exhausted prematurely");
92 * was exhausted.
101 if (source.exhausted()) return true;
GzipSource.java 88 // The body is exhausted; time to read the trailer. We always consume the
89 // trailer before returning a -1 exhausted result; that way if you read to
99 if (!source.exhausted()) {
RealBufferedSource.java 58 @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.
  /external/skia/fuzz/
FuzzPathop.cpp 17 while (!fuzz->exhausted()) {
Fuzz.h 25 bool exhausted();
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 820 boolean exhausted; // true when no more nodes field in class:ConcurrentLinkedQueue.CLQSpliterator
830 if (!exhausted &&
842 exhausted = true;
    [all...]
LinkedBlockingQueue.java 834 boolean exhausted; // true when no more nodes field in class:LinkedBlockingQueue.LBQSpliterator
848 if (!exhausted &&
867 exhausted = true;
885 if (!exhausted) {
886 exhausted = true;
912 if (!exhausted) {
928 exhausted = true;
    [all...]
ConcurrentLinkedDeque.java 1445 boolean exhausted; \/\/ true when no more nodes field in class:ConcurrentLinkedDeque.CLDSpliterator
    [all...]
LinkedBlockingDeque.java 1135 boolean exhausted; \/\/ true when no more nodes field in class:LinkedBlockingDeque.LBDSpliterator
    [all...]
LinkedTransferQueue.java 1025 boolean exhausted; \/\/ true when no more nodes field in class:LinkedTransferQueue.LTQSpliterator
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
WebPlatformUrlTestData.java 117 while (!in.exhausted()) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
RealConnection.java 287 if (!source.buffer().exhausted() || !sink.buffer().exhausted()) {
361 if (source.exhausted()) {
362 return false; // Stream is exhausted; socket is closed.
  /prebuilts/go/darwin-x86/src/path/
match.go 50 // if we're the last chunk, make sure we've exhausted the name
66 // if we're the last chunk, make sure we exhausted the name
  /prebuilts/go/linux-x86/src/path/
match.go 50 // if we're the last chunk, make sure we've exhausted the name
66 // if we're the last chunk, make sure we exhausted the name
  /external/owasp/sanitizer/empiricism/
html-containment.js 36 var exhausted = nRuns === 0;
86 exhausted = i < 0;
94 while (!exhausted) {
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
ExpressionParser.cpp     [all...]
  /external/bison/data/
yacc.c 919 required. Return 1 if memory is exhausted. */
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java 167 while (!body.exhausted()) {
  /prebuilts/go/darwin-x86/src/path/filepath/
match.go 56 // if we're the last chunk, make sure we've exhausted the name
72 // if we're the last chunk, make sure we exhausted the name
  /prebuilts/go/linux-x86/src/path/filepath/
match.go 56 // if we're the last chunk, make sure we've exhausted the name
72 // if we're the last chunk, make sure we exhausted the name

Completed in 377 milliseconds

1 2 3