コード例 #1
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public static final String readUTF(DataInput in) throws IOException {
   return InferUndefined.can_throw_ioexception_string();
 }
コード例 #2
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final int skipBytes(int n) throws IOException {
   return InferUndefined.can_throw_ioexception_int();
 }
コード例 #3
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final int readUnsignedShort() throws IOException {
   return InferUndefined.can_throw_ioexception_int();
 }
コード例 #4
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final String readUTF() throws IOException {
   return InferUndefined.can_throw_ioexception_string();
 }
コード例 #5
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final long readLong() throws IOException {
   return InferUndefined.can_throw_ioexception_long();
 }
コード例 #6
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final short readShort() throws IOException {
   return InferUndefined.can_throw_ioexception_short();
 }
コード例 #7
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final float readFloat() throws IOException {
   return InferUndefined.can_throw_ioexception_float();
 }
コード例 #8
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final void readFully(byte b[], int off, int len) throws IOException {
   InferUndefined.can_throw_ioexception_void();
 }
コード例 #9
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final double readDouble() throws IOException {
   return InferUndefined.can_throw_ioexception_double();
 }
コード例 #10
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final char readChar() throws IOException {
   return InferUndefined.can_throw_ioexception_char();
 }
コード例 #11
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final byte readByte() throws IOException {
   return InferUndefined.can_throw_ioexception_byte();
 }
コード例 #12
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public final boolean readBoolean() throws IOException {
   return InferUndefined.can_throw_ioexception_boolean();
 }
コード例 #13
0
ファイル: DataInputStream.java プロジェクト: adityavs/infer
 public int read(byte b[], int off, int len) throws IOException {
   return InferUndefined.can_throw_ioexception_int();
 }