Searched defs:writeInt (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DDataOutput.java158 public abstract void writeInt(int val) throws IOException; method in interface:DataOutput
H A DDataOutputStream.java175 writeInt(Float.floatToIntBits(val));
178 public final void writeInt(int val) throws IOException { method in class:DataOutputStream
H A DRandomAccessFile.java436 * @see #writeInt(int)
816 writeInt(Float.floatToIntBits(val));
829 public final void writeInt(int val) throws IOException { method in class:RandomAccessFile
H A DObjectOutputStream.java395 output.writeInt(toWrite);
769 output.writeInt(interfaces.length);
812 output.writeInt(handle);
909 output.writeInt(fieldValue != null ? ((Integer) fieldValue).intValue() : 0);
966 output.writeInt(field.getInt(obj));
1094 public void writeInt(int value) throws IOException { method in class:ObjectOutputStream
1096 primitiveTypes.writeInt(value);
1149 output.writeInt(intArray.length);
1151 output.writeInt(intArray[i]);
1155 output.writeInt(byteArra
[all...]
/libcore/luni/src/main/java/java/sql/
H A DSQLOutput.java91 public void writeInt(int theInt) throws SQLException; method in interface:SQLOutput

Completed in 878 milliseconds