Lines Matching refs:off

95      * The byte <code>b[off]</code> is written first, then the byte
96 * <code>b[off + 1]</code>, and so on.
107 * @param off the start offset in the data.
110 * @exception IndexOutOfBoundsException if <code>off</code> is
111 * negative, <code>len</code> is negative, or <code>off +
117 void write(byte b[], int off, int len) throws IOException;
442 * The short <code>s[off]</code> is written first, then the short
443 * <code>s[off + 1]</code>, and so on. The byte order of the
453 * @param off the start offset in the data.
456 * @exception IndexOutOfBoundsException if <code>off</code> is
457 * negative, <code>len</code> is negative, or <code>off +
463 void writeShorts(short[] s, int off, int len) throws IOException;
468 * The char <code>c[off]</code> is written first, then the char
469 * <code>c[off + 1]</code>, and so on. The byte order of the
479 * @param off the start offset in the data.
482 * @exception IndexOutOfBoundsException if <code>off</code> is
483 * negative, <code>len</code> is negative, or <code>off +
489 void writeChars(char[] c, int off, int len) throws IOException;
494 * The int <code>i[off]</code> is written first, then the int
495 * <code>i[off + 1]</code>, and so on. The byte order of the
505 * @param off the start offset in the data.
508 * @exception IndexOutOfBoundsException if <code>off</code> is
509 * negative, <code>len</code> is negative, or <code>off +
515 void writeInts(int[] i, int off, int len) throws IOException;
520 * The long <code>l[off]</code> is written first, then the long
521 * <code>l[off + 1]</code>, and so on. The byte order of the
531 * @param off the start offset in the data.
534 * @exception IndexOutOfBoundsException if <code>off</code> is
535 * negative, <code>len</code> is negative, or <code>off +
541 void writeLongs(long[] l, int off, int len) throws IOException;
546 * The float <code>f[off]</code> is written first, then the float
547 * <code>f[off + 1]</code>, and so on. The byte order of the
557 * @param off the start offset in the data.
560 * @exception IndexOutOfBoundsException if <code>off</code> is
561 * negative, <code>len</code> is negative, or <code>off +
567 void writeFloats(float[] f, int off, int len) throws IOException;
572 * The double <code>d[off]</code> is written first, then the double
573 * <code>d[off + 1]</code>, and so on. The byte order of the
583 * @param off the start offset in the data.
586 * @exception IndexOutOfBoundsException if <code>off</code> is
587 * negative, <code>len</code> is negative, or <code>off +
593 void writeDoubles(double[] d, int off, int len) throws IOException;