Searched refs:readLimit (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DStringReader.java70 * Sets a mark position in this reader. The parameter {@code readLimit} is
74 * @param readLimit
77 * if {@code readLimit < 0}.
84 public void mark(int readLimit) throws IOException { argument
85 if (readLimit < 0) {
86 throw new IllegalArgumentException("readLimit < 0: " + readLimit);
H A DReader.java79 * Sets a mark position in this reader. The parameter {@code readLimit}
82 * position if {@code readLimit} has not been surpassed.
87 * @param readLimit
91 * if {@code readLimit < 0}.
97 public void mark(int readLimit) throws IOException { argument
H A DCharArrayReader.java128 * Sets a mark position in this reader. The parameter {@code readLimit} is
133 * @param readLimit
139 public void mark(int readLimit) throws IOException { argument
/libcore/support/src/test/java/tests/support/
H A DSupport_StringReader.java69 * Set a Mark position in this Reader. The parameter <code>readLimit</code>
80 public void mark(int readLimit) throws IOException { argument
81 if (readLimit >= 0) {
/libcore/luni/src/test/java/libcore/java/io/
H A DOldFilterReaderTest.java44 public void mark(int readLimit) throws IOException { argument

Completed in 226 milliseconds