Home | History | Annotate | Download | only in util

Lines Matching refs:write

47             writer.write(' ');
52 public void write(int chr) throws IOException {
54 writer.write(newLine);
61 writer.write(chr);
73 writer.write(chars, start, len);
85 writer.write(str, start, len);
89 public void write(char[] chars) throws IOException {
90 write(chars, 0, chars.length);
94 public void write(char[] chars, int start, int len) throws IOException {
101 writer.write(newLine);
113 public void write(String s) throws IOException {
114 write(s, 0, s.length());
118 public void write(String str, int start, int len) throws IOException {
128 writer.write(newLine);
137 write(charSequence.toString());
143 write(charSequence.subSequence(start, len).toString());
149 write(c);
200 write('-');
220 write('-');