Lines Matching defs:write
56 public void write(int b) throws IOException {
58 out.write(newline);
61 out.write(newline);
63 out.write(b);
68 public void write(byte b[]) throws IOException {
69 write(b, 0, b.length);
72 public void write(byte b[], int off, int len) throws IOException {
78 out.write(b, start, i - start);
79 out.write(newline);
83 out.write(b, start, i - start);
84 out.write(newline);
91 out.write(b, start, len - start);