Searched refs:readAheadLimit (Results 1 - 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DFilterReader.java107 public void mark(int readAheadLimit) throws IOException { argument
108 in.mark(readAheadLimit);
H A DBufferedReader.java81 private int readAheadLimit = 0; /* Valid only when markedChar > 0 */ field in class:BufferedReader
137 if (delta >= readAheadLimit) {
140 readAheadLimit = 0;
143 if (readAheadLimit <= cb.length) {
153 // size the buffer to the readAheadLimit.
155 // char ncb[] = new char[readAheadLimit];
157 if (nlength > readAheadLimit) {
158 nlength = readAheadLimit;
489 * @param readAheadLimit Limit on the number of characters that may be
498 * @exception IllegalArgumentException If {@code readAheadLimit <
501 mark(int readAheadLimit) argument
[all...]
H A DStringReader.java160 * @param readAheadLimit Limit on the number of characters that may be
166 * @exception IllegalArgumentException If {@code readAheadLimit < 0}
169 public void mark(int readAheadLimit) throws IOException { argument
170 if (readAheadLimit < 0){
H A DLineNumberReader.java252 * @param readAheadLimit
260 public void mark(int readAheadLimit) throws IOException { argument
262 super.mark(readAheadLimit);
H A DByteArrayInputStream.java256 * <p> Note: The <code>readAheadLimit</code> for this class
261 public void mark(int readAheadLimit) { argument
H A DReader.java223 * @param readAheadLimit Limit on the number of characters that may be
231 public void mark(int readAheadLimit) throws IOException { argument
H A DCharArrayReader.java199 * @param readAheadLimit Limit on the number of characters that may be
207 public void mark(int readAheadLimit) throws IOException { argument
H A DPushbackReader.java217 public void mark(int readAheadLimit) throws IOException { argument

Completed in 70 milliseconds