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

1 2 3 4

  /libcore/luni/src/main/java/java/io/
EOFException.java 24 public class EOFException extends IOException {
29 * Constructs a new {@code EOFException} with its stack trace filled in.
31 public EOFException() {
35 * Constructs a new {@code EOFException} with its stack trace and detail
41 public EOFException(String detailMessage) {
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeInput.java 19 import java.io.EOFException;
34 public int read() throws EOFException;
39 public int readInt() throws EOFException;
44 public long readLong() throws EOFException;
ShortArrayCodeInput.java 19 import java.io.EOFException;
46 public int read() throws EOFException {
52 throw new EOFException();
57 public int readInt() throws EOFException {
65 public long readLong() throws EOFException {
AddressMap.java 19 import java.io.EOFException;
BaseCodeCursor.java 19 import java.io.EOFException;
InstructionCodec.java 25 import java.io.EOFException;
34 CodeInput in) throws EOFException {
47 CodeInput in) throws EOFException {
62 CodeInput in) throws EOFException {
81 CodeInput in) throws EOFException {
100 CodeInput in) throws EOFException {
116 CodeInput in) throws EOFException {
133 CodeInput in) throws EOFException {
151 CodeInput in) throws EOFException {
170 CodeInput in) throws EOFException {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
CodeInput.java 19 import java.io.EOFException;
34 public int read() throws EOFException;
39 public int readInt() throws EOFException;
44 public long readLong() throws EOFException;
ShortArrayCodeInput.java 19 import java.io.EOFException;
46 public int read() throws EOFException {
52 throw new EOFException();
57 public int readInt() throws EOFException {
65 public long readLong() throws EOFException {
AddressMap.java 19 import java.io.EOFException;
BaseCodeCursor.java 19 import java.io.EOFException;
InstructionCodec.java 25 import java.io.EOFException;
34 CodeInput in) throws EOFException {
47 CodeInput in) throws EOFException {
62 CodeInput in) throws EOFException {
81 CodeInput in) throws EOFException {
100 CodeInput in) throws EOFException {
116 CodeInput in) throws EOFException {
133 CodeInput in) throws EOFException {
151 CodeInput in) throws EOFException {
170 CodeInput in) throws EOFException {
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
SwappedDataInputStream.java 20 import java.io.EOFException;
54 * @throws EOFException if an end of file is reached unexpectedly
57 throws IOException, EOFException
66 * @throws EOFException if an end of file is reached unexpectedly
69 throws IOException, EOFException
78 * @throws EOFException if an end of file is reached unexpectedly
81 throws IOException, EOFException
90 * @throws EOFException if an end of file is reached unexpectedly
93 throws IOException, EOFException
102 * @throws EOFException if an end of file is reached unexpectedly
    [all...]
NullInputStream.java 19 import java.io.EOFException;
75 * which supports marking and does not throw EOFException.
91 * will throw an {@link EOFException} or return -1 when the
176 * @throws EOFException if the end of file is reached and
198 * @throws EOFException if the end of file is reached and
215 * @throws EOFException if the end of file is reached and
267 * @throws EOFException if the end of file is reached and
318 * @throws EOFException if <code>throwEofException</code> is set
321 private int doEndOfFile() throws EOFException {
324 throw new EOFException();
    [all...]
NullReader.java 19 import java.io.EOFException;
75 * which supports marking and does not throw EOFException.
91 * will throw an {@link EOFException} or return -1 when the
160 * @throws EOFException if the end of file is reached and
182 * @throws EOFException if the end of file is reached and
199 * @throws EOFException if the end of file is reached and
251 * @throws EOFException if the end of file is reached and
302 * @throws EOFException if <code>throwEofException</code> is set
305 private int doEndOfFile() throws EOFException {
308 throw new EOFException();
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
EOFExceptionTest.java 22 import java.io.EOFException;
28 * @tests java.io.EOFException#EOFException()
34 fail("Failed to generate EOFException");
35 } catch (EOFException e) {
41 * @tests java.io.EOFException#EOFException(java.lang.String)
47 fail("Failed to generate EOFException");
48 } catch (EOFException e) {
  /libcore/luni/src/test/java/libcore/io/
StrictLineReaderTest.java 22 import java.io.EOFException;
44 } catch (EOFException eof) {
45 fail("line reader threw EOFException too early.");
47 } catch (EOFException refEof) {
50 fail("line reader didn't throw the expected EOFException.");
51 } catch (EOFException eof) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
IndefiniteLengthInputStream.java 3 import java.io.EOFException;
28 throw new EOFException();
70 throw new EOFException();
82 throw new EOFException();
101 throw new EOFException();
DefiniteLengthInputStream.java 3 import java.io.EOFException;
55 throw new EOFException("DEF length " + _originalLength + " object truncated by " + _remaining);
79 throw new EOFException("DEF length " + _originalLength + " object truncated by " + _remaining);
101 throw new EOFException("DEF length " + _originalLength + " object truncated by " + _remaining);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
UndeclaredThrowableExceptionTests.java 5 import java.io.EOFException;
10 private static EOFException throwable = new EOFException();
  /dalvik/tests/004-annotations/src/android/test/anno/
FullyNoted.java 5 import java.io.EOFException;
22 throws IOException, EOFException {
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectInputOutputStreamTest.java 20 import java.io.EOFException;
46 fail("Test 2: EOFException expected.");
47 } catch (EOFException e) {
70 fail("Test 2: EOFException expected.");
71 } catch (EOFException e) {
94 fail("Test 2: EOFException expected.");
95 } catch (EOFException e) {
118 fail("Test 2: EOFException expected.");
119 } catch (EOFException e) {
142 fail("Test 2: EOFException expected.")
    [all...]
OldDataInputOutputStreamTest.java 23 import java.io.EOFException;
55 fail("Test 3: EOFException expected.");
56 } catch (EOFException e) {
87 fail("Test 3: EOFException expected.");
88 } catch (EOFException e) {
119 fail("Test 3: EOFException expected.");
120 } catch (EOFException e) {
151 fail("Test 2: EOFException expected.");
152 } catch (EOFException e) {
183 fail("Test 3: EOFException expected.")
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
ByteBufferByteChannel.java 18 import java.io.EOFException;
40 throw new EOFException("Reading beyond end of stream");
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileReader.java 22 import java.io.EOFException;
60 } catch (EOFException e) {
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
ChannelHelper.java 18 import java.io.EOFException;
63 throw new EOFException("End of file. No more boxes.");
74 throw new EOFException();

Completed in 630 milliseconds

1 2 3 4