Home | History | Annotate | Download | only in io

Lines Matching refs:InputStream

21 import java.io.InputStream;

292 * Reads a "short" value from an InputStream. The value is
294 * @param input source InputStream
298 public static short readSwappedShort(InputStream input)
306 * Reads a unsigned short (16-bit) from an InputStream. The value is
308 * @param input source InputStream
312 public static int readSwappedUnsignedShort(InputStream input)
339 * Reads a "int" value from an InputStream. The value is
341 * @param input source InputStream
345 public static int readSwappedInteger(InputStream input)
360 * Reads a unsigned integer (32-bit) from an InputStream. The value is
362 * @param input source InputStream
366 public static long readSwappedUnsignedInteger(InputStream input)
404 * Reads a "long" value from an InputStream. The value is
406 * @param input source InputStream
410 public static long readSwappedLong(InputStream input)
434 * Reads a "float" value from an InputStream. The value is
436 * @param input source InputStream
440 public static float readSwappedFloat(InputStream input)
460 * Reads a "double" value from an InputStream. The value is
462 * @param input source InputStream
466 public static double readSwappedDouble(InputStream input)
478 private static int read(InputStream input)