Home | History | Annotate | Download | only in input

Lines Matching refs:length

79         if (idx >= charSequence.length()) {
91 * @param length The maximum number of characters to read
95 public int read(char[] array, int offset, int length) {
96 if (idx >= charSequence.length()) {
102 if (length < 0 || (offset + length) > array.length) {
103 throw new IndexOutOfBoundsException("Array Size=" + array.length +
104 ", offset=" + offset + ", length=" + length);
107 for (int i = 0; i < length; i++) {
137 if (idx >= charSequence.length()) {
140 int dest = (int)Math.min(charSequence.length(), (idx + n));