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

1 2

  /external/okhttp/okio/src/main/java/okio/
BufferedSource.java 32 * until there are bytes to read or the source is definitely exhausted.
34 boolean exhausted() throws IOException; method in interface:BufferedSource
38 * an {@link java.io.EOFException} if the source is exhausted before the
66 * {@link java.io.EOFException} if the source is exhausted before the
88 * source is exhausted. Use this for human-generated data, where a trailing
108 * Returns -1 if the stream is exhausted before the requested byte is found.
RealBufferedSource.java 56 @Override public boolean exhausted() throws IOException { method in class:RealBufferedSource
58 return buffer.exhausted() && source.read(buffer, Segment.SIZE) == -1;
InflaterSource.java 77 if (sourceExhausted) throw new EOFException("source exhausted prematurely");
87 * was exhausted.
96 if (source.exhausted()) return true;
GzipSource.java 83 // The body is exhausted; time to read the trailer. We always consume the
84 // trailer before returning a -1 exhausted result; that way if you read to
94 if (!source.exhausted()) {
OkBuffer.java 89 @Override public boolean exhausted() {
  /external/okhttp/okio/src/test/java/okio/
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;
ReadUtf8LineTest.java 45 assertTrue(source.exhausted());
  /external/owasp/sanitizer/empiricism/
html-containment.js 36 var exhausted = nRuns === 0;
86 exhausted = i < 0;
94 while (!exhausted) {
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
pmu-bison.c     [all...]
parse-events-bison.c     [all...]
  /external/bison/data/
yacc.c 919 required. Return 1 if memory is exhausted. */
    [all...]
glr.c     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
mathml_store_util.js 165 * content node. Returns only context string if list is exhausted.
  /external/elfutils/0.153/src/
ldscript.c     [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpConnection.java 94 * the HTTP response body is exhausted.
108 * exhausted.
144 if (source.exhausted()) {
145 return false; // Stream is exhausted; socket is closed.
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
HpackDraft05.java 181 while (!source.exhausted()) {
  /external/libpcap/
grammar.c     [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dfa.rb 92 If positive and the input stream has been exhausted,
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_parser.cc     [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
thingsToDo.txt 145 once the edges are exhausted, remaining must be disjoint contours
  /external/elfutils/0.153/libcpu/
i386_parse.c     [all...]
  /external/skia/experimental/Intersection/
thingsToDo.txt 145 once the edges are exhausted, remaining must be disjoint contours
  /external/valgrind/main/none/tests/s390x/
cu12.stdout.exp 749 ----- Invalid 2nd char AND output exhausted -----
756 ----- Invalid 3rd char AND output exhausted -----
1137 ----- Invalid 2nd char AND output exhausted -----
1144 ----- Invalid 3rd char AND output exhausted -----
1151 ----- Invalid 4th char AND output exhausted -----
    [all...]
cu12_1.stdout.exp 749 ----- Invalid 2nd char AND output exhausted -----
756 ----- Invalid 3rd char AND output exhausted -----
1137 ----- Invalid 2nd char AND output exhausted -----
1144 ----- Invalid 3rd char AND output exhausted -----
1151 ----- Invalid 4th char AND output exhausted -----
    [all...]
cu14.stdout.exp 749 ----- Invalid 2nd char AND output exhausted -----
756 ----- Invalid 3rd char AND output exhausted -----
1137 ----- Invalid 2nd char AND output exhausted -----
1144 ----- Invalid 3rd char AND output exhausted -----
1151 ----- Invalid 4th char AND output exhausted -----
    [all...]

Completed in 964 milliseconds

1 2