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

/openjdk10/jdk/src/java.base/share/classes/java/io/
H A DFilterReader.java108 public void mark(int readAheadLimit) throws IOException { argument
109 in.mark(readAheadLimit);
H A DBufferedReader.java80 private int readAheadLimit = 0; /* Valid only when markedChar > 0 */ field in class:BufferedReader
136 if (delta >= readAheadLimit) {
139 readAheadLimit = 0;
142 if (readAheadLimit <= cb.length) {
149 char ncb[] = new char[readAheadLimit];
481 * @param readAheadLimit Limit on the number of characters that may be
490 * @exception IllegalArgumentException If {@code readAheadLimit < 0}
493 public void mark(int readAheadLimit) throws IOException { argument
494 if (readAheadLimit < 0) {
499 this.readAheadLimit
[all...]
H A DStringReader.java161 * @param readAheadLimit Limit on the number of characters that may be
167 * @exception IllegalArgumentException If {@code readAheadLimit < 0}
170 public void mark(int readAheadLimit) throws IOException { argument
171 if (readAheadLimit < 0){
H A DLineNumberReader.java254 * @param readAheadLimit
262 public void mark(int readAheadLimit) throws IOException { argument
264 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.java226 * @param readAheadLimit Limit on the number of characters that may be
234 public void mark(int readAheadLimit) throws IOException { argument
H A DCharArrayReader.java200 * @param readAheadLimit Limit on the number of characters that may be
208 public void mark(int readAheadLimit) throws IOException { argument
H A DPushbackReader.java218 public void mark(int readAheadLimit) throws IOException { argument
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/io/
H A DASCIIReader.java205 * @param readAheadLimit Limit on the number of characters that may be
213 public void mark(int readAheadLimit) throws IOException { argument
214 fInputStream.mark(readAheadLimit);
H A DUCSReader.java269 * @param readAheadLimit Limit on the number of characters that may be
277 public void mark(int readAheadLimit) throws IOException { argument
278 fInputStream.mark(readAheadLimit);
H A DUTF8Reader.java634 * @param readAheadLimit Limit on the number of characters that may be
642 public void mark(int readAheadLimit) throws IOException { argument
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/encoding/
H A DMarshalInputStream.java81 public void mark(int readAheadLimit); argument
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/io/
H A DIIOPInputStream.java568 public final void mark(int readAheadLimit) { argument
569 orbStream.mark(readAheadLimit);

Completed in 124 milliseconds