Lines Matching refs:len

94      * position.  If <code>len</code> is 0, nothing is written.
108 * @param len the number of <code>byte</code>s to write.
111 * negative, <code>len</code> is negative, or <code>off +
112 * len</code> is greater than <code>b.length</code>.
117 void write(byte b[], int off, int len) throws IOException;
441 * position. If <code>len</code> is 0, nothing is written.
454 * @param len the number of <code>short</code>s to write.
457 * negative, <code>len</code> is negative, or <code>off +
458 * len</code> is greater than <code>s.length</code>.
463 void writeShorts(short[] s, int off, int len) throws IOException;
467 * position. If <code>len</code> is 0, nothing is written.
480 * @param len the number of <code>char</code>s to write.
483 * negative, <code>len</code> is negative, or <code>off +
484 * len</code> is greater than <code>c.length</code>.
489 void writeChars(char[] c, int off, int len) throws IOException;
493 * position. If <code>len</code> is 0, nothing is written.
506 * @param len the number of <code>int</code>s to write.
509 * negative, <code>len</code> is negative, or <code>off +
510 * len</code> is greater than <code>i.length</code>.
515 void writeInts(int[] i, int off, int len) throws IOException;
519 * position. If <code>len</code> is 0, nothing is written.
532 * @param len the number of <code>long</code>s to write.
535 * negative, <code>len</code> is negative, or <code>off +
536 * len</code> is greater than <code>l.length</code>.
541 void writeLongs(long[] l, int off, int len) throws IOException;
545 * position. If <code>len</code> is 0, nothing is written.
558 * @param len the number of <code>float</code>s to write.
561 * negative, <code>len</code> is negative, or <code>off +
562 * len</code> is greater than <code>f.length</code>.
567 void writeFloats(float[] f, int off, int len) throws IOException;
571 * position. If <code>len</code> is 0, nothing is written.
584 * @param len the number of <code>double</code>s to write.
587 * negative, <code>len</code> is negative, or <code>off +
588 * len</code> is greater than <code>d.length</code>.
593 void writeDoubles(double[] d, int off, int len) throws IOException;