Home | History | Annotate | Download | only in io

Lines Matching defs:nextChar

71     private int nChars, nextChar;
107 nextChar = 0;
127 if (nextChar == 0)
129 out.write(cb, 0, nextChar);
130 nextChar = 0;
142 if (nextChar >= nChars)
144 cb[nextChar++] = (char) c;
194 int d = min(nChars - nextChar, t - b);
195 System.arraycopy(cbuf, b, cb, nextChar, d);
197 nextChar += d;
198 if (nextChar >= nChars)
225 int d = min(nChars - nextChar, t - b);
226 s.getChars(b, b + d, cb, nextChar);
228 nextChar += d;
229 if (nextChar >= nChars)