Home | History | Annotate | Download | only in util

Lines Matching refs:start

68     private void writeLine(char[] chars, int start, int len) throws IOException {
73 writer.write(chars, start, len);
80 private void writeLine(String str, int start, int len) throws IOException {
85 writer.write(str, start, len);
94 public void write(char[] chars, int start, int len) throws IOException {
95 final int end = start+len;
96 int pos = start;
99 writeLine(chars, start, pos-start);
104 start = pos;
109 writeLine(chars, start, pos-start);
118 public void write(String str, int start, int len) throws IOException {
119 final int end = start+len;
120 int pos = start;
122 pos = str.indexOf('\n', start);
124 writeLine(str, start, end-start);
127 writeLine(str, start, pos-start);
130 start = pos+1;
142 public Writer append(CharSequence charSequence, int start, int len) throws IOException {
143 write(charSequence.subSequence(start, len).toString());