Searched refs:eof (Results 1 - 9 of 9) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DOptionalDataException.java36 public boolean eof; field in class:OptionalDataException
H A DRandomAccessFile.java659 long currentPos = getFilePointer(), eof = length();
660 int newCount = (int) ((currentPos + count > eof) ? eof - currentPos : count);
H A DObjectInputStream.java811 e.eof = true;
/libcore/luni/src/main/java/java/util/zip/
H A DInflaterInputStream.java61 boolean eof; field in class:InflaterInputStream
148 if (eof) {
156 // Invariant: if reading returns -1 or throws, eof must be true.
160 eof = inf.finished();
163 } else if (eof) {
166 eof = true;
169 eof = true;
174 eof = true;
240 if (eof) {
257 eof
[all...]
H A DGZIPInputStream.java169 eos = eof; // update eos after every read(), even when it throws
H A DZipInputStream.java315 eof = true;
/libcore/luni/src/test/java/libcore/io/
H A DStrictLineReaderTest.java44 } catch (EOFException eof) {
51 } catch (EOFException eof) {
/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
H A DGenericSignatureParser.java83 char symbol; // 0: eof; else valid term symbol or first char of identifier.
89 * eof is private to the scan methods
92 private boolean eof; field in class:GenericSignatureParser
105 this.eof = false;
109 this.eof = true;
123 if (!eof) {
149 if (!eof) {
177 if (!eof) {
203 if (!eof) {
442 if (!eof) {
[all...]
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java822 //eof
870 private boolean eof = false; field in class:ObjectInputStreamTest.ExceptionalBufferedInputStream
884 if (eof) {
894 public void setEOF(boolean eof) { argument
895 this.eof = eof;

Completed in 203 milliseconds