Searched defs:reset (Results 1 - 25 of 61) sorted by relevance

123

/libcore/luni/src/main/java/java/io/
H A DFilterInputStream.java70 * Sending {@code reset()} will reposition this stream back to the marked
79 * @see #reset()
87 * Indicates whether this stream supports {@code mark()} and {@code reset()}.
91 * @return {@code true} if {@code mark()} and {@code reset()} are supported,
94 * @see #reset()
133 public synchronized void reset() throws IOException { method in class:FilterInputStream
134 in.reset();
139 * calls to {@code read} will not return these bytes unless {@code reset} is
147 * @see #reset()
H A DFilterReader.java64 * Sending {@code reset()} will reposition this reader back to the marked
75 * @see #reset()
85 * Indicates whether this reader supports {@code mark()} and {@code reset()}.
88 * @return {@code true} if {@code mark()} and {@code reset()} are supported
91 * @see #reset()
156 * {@code reset()} in the Reader subclass that is filtered by this reader.
161 * {@code mark()} and {@code reset()}.
166 public void reset() throws IOException { method in class:FilterReader
168 in.reset();
174 * will not return these characters unless {@code reset} i
[all...]
H A DInputStream.java40 * {@link #reset()} is called.
119 * Sending {@code reset()} will reposition the stream back to the marked
129 * @see #reset()
137 * {@code reset()} methods. The default implementation returns {@code false}.
141 * @see #reset()
207 public synchronized void reset() throws IOException { method in class:InputStream
H A DStringBufferInputStream.java102 public synchronized void reset() { method in class:StringBufferInputStream
H A DByteArrayInputStream.java105 * {@code readlimit} is ignored. Sending {@code reset()} will reposition the
111 * @see #reset()
120 * {@code reset()} methods. Returns {@code true} since this class supports
125 * @see #reset()
169 public synchronized void reset() { method in class:ByteArrayInputStream
175 * calls to {@code read} will not return these bytes unless {@code reset} is
H A DLineNumberInputStream.java82 * Sending {@code reset()} will reposition this stream back to the marked
84 * The line number count will also be reset to the last marked
93 * @see #reset()
191 public void reset() throws IOException { method in class:LineNumberInputStream
192 in.reset();
205 * @see #reset()
213 * calls to {@code read} will not return these bytes unless {@code reset} is
225 * @see #reset()
H A DReader.java81 * Calling {@code reset()} will reposition the reader back to the marked
95 * @see #reset()
103 * {@code reset()} methods. This default implementation returns
176 * {@code reset()} is implementation specific. This default
184 public void reset() throws IOException { method in class:Reader
191 * reset} is used. This method may perform multiple reads to read {@code
201 * @see #reset()
H A DStringReader.java71 * ignored for this class. Calling {@code reset()} will reposition the
81 * @see #reset()
103 * reset()} methods. This implementation returns {@code true}.
184 * location. If this reader has not been marked, it is reset to the
193 public void reset() throws IOException { method in class:StringReader
218 * @see #reset()
H A DBufferedInputStream.java183 * Calling {@code reset()} will reposition the stream back to the marked
191 * @see #reset()
201 * and {@code reset()} methods.
205 * @see #reset()
331 public synchronized void reset() throws IOException { method in class:BufferedInputStream
343 * {@code read} will not return these bytes unless {@code reset} is
H A DByteArrayOutputStream.java101 public synchronized void reset() { method in class:ByteArrayOutputStream
H A DCharArrayReader.java129 * ignored for CharArrayReaders. Calling {@code reset()} will reposition the
154 * {@code reset()} methods.
158 * @see #reset()
235 * location. If this reader has not been marked, it is reset to the
242 public void reset() throws IOException { method in class:CharArrayReader
251 * {@code read} will not return these characters unless {@code reset}
H A DCharArrayWriter.java99 * Resets this writer. The current write position is reset to the beginning
103 public void reset() { method in class:CharArrayWriter
111 * stores. This number changes if this writer is reset or when more
220 * receiver since the last reset or since it was created.
H A DLineNumberReader.java76 * Sending {@code reset()} will reposition this reader back to the marked
79 * it can be restored when {@code reset()} is called.
87 * @see #reset()
211 public void reset() throws IOException { method in class:LineNumberReader
213 super.reset();
227 * @see #reset()
237 * {@code read} will not return these characters unless {@code reset}
249 * @see #reset()
H A DPushbackInputStream.java110 * {@code reset()} methods. {@code PushbackInputStream} does not support
115 * @see #reset()
330 public void reset() throws IOException { method in class:PushbackInputStream
H A DPushbackReader.java104 throw new IOException("mark/reset not supported");
109 * {@code reset()} methods. {@code PushbackReader} does not support them, so
114 * @see #reset()
237 public void reset() throws IOException { method in class:PushbackReader
238 throw new IOException("mark/reset not supported");
/libcore/luni/src/main/java/java/util/zip/
H A DAdler32.java43 public void reset() { method in class:Adler32
H A DCRC32.java44 public void reset() { method in class:CRC32
H A DChecksum.java36 public void reset(); method in interface:Checksum
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DSecurityChecker.java54 public SecurityChecker reset() { method in class:SecurityChecker
/libcore/luni/src/main/java/java/text/
H A DCollationElementIterator.java48 * To change iteration direction, {@code reset}, {@code setOffset} or {@code setText}
49 * must be called to reset the iterator. If a change of direction is done without one
138 * attributes changed, calling {@code reset()} reinitializes the iterator to
141 public void reset() { method in class:CollationElementIterator
142 this.icuIterator.reset();
/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPath.java91 * <p><code>XPath</code> is reset to the same state as when it was created with
93 * <code>reset()</code> is designed to allow the reuse of existing <code>XPath</code>s
96 * <p>The reset <code>XPath</code> is not guaranteed to have the same {@link XPathFunctionResolver}, {@link XPathVariableResolver}
101 public void reset(); method in interface:XPath
/libcore/luni/src/main/java/libcore/net/url/
H A DFtpURLInputStream.java51 public synchronized void reset() throws IOException { method in class:FtpURLInputStream
52 is.reset();
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DSAXParserImpl.java56 @Override public void reset() { method in class:SAXParserImpl
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DTrustManagerFactorySpiImpl.java32 public void reset() { method in class:TrustManagerFactorySpiImpl
/libcore/support/src/test/java/tests/support/
H A DSupport_StringReader.java70 * is ignored for StringReaders. Sending reset() will reposition the reader
96 * mark() and reset(). This method always returns true.
98 * @return <code>true</code> if mark() and reset() are supported,
199 * reset to the beginning of the String.
205 public void reset() throws IOException { method in class:Support_StringReader
218 * unless <code>reset()</code> is used.

Completed in 435 milliseconds

123