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

1234

/libcore/ojluni/src/main/java/java/util/zip/
H A DChecksum.java59 public void reset(); method in interface:Checksum
H A DAdler32.java115 public void reset() { method in class:Adler32
H A DCRC32.java80 public void reset() { method in class:CRC32
/libcore/ojluni/src/main/java/java/io/
H A DFilterInputStream.java186 * call to the <code>reset</code> method repositions this stream at
198 * @see java.io.FilterInputStream#reset()
209 * simply performs <code>in.reset()</code>.
218 * code to reset the stream and try another parser.
225 public synchronized void reset() throws IOException { method in class:FilterInputStream
226 in.reset();
231 * and <code>reset</code> methods.
236 * <code>mark</code> and <code>reset</code> method;
240 * @see java.io.InputStream#reset()
H A DFilterReader.java116 public void reset() throws IOException { method in class:FilterReader
117 in.reset();
H A DInputStream.java275 * the <code>reset</code> method repositions this stream at the last marked
286 * <code>reset</code> is called. However, the stream is not required to
288 * read from the stream before <code>reset</code> is called.
297 * @see java.io.InputStream#reset()
305 * <p> The general contract of <code>reset</code> is:
319 * stream is reset to a state such that all the bytes read since the
324 * the time of the call to <code>reset</code>. </ul>
329 * <ul><li> The call to <code>reset</code> may throw an
333 * is reset to a fixed state that depends on the particular type of the
338 * <p>The method <code>reset</cod
346 public synchronized void reset() throws IOException { method in class:InputStream
[all...]
H A DStringBufferInputStream.java169 public synchronized void reset() { method in class:StringBufferInputStream
H A DByteArrayInputStream.java71 * <code>reset()</code> method.
236 * Tests if this <code>InputStream</code> supports mark/reset. The
270 public synchronized void reset() { method in class:ByteArrayInputStream
H A DLineNumberInputStream.java245 * call to the <code>reset</code> method repositions this stream at
256 * @see java.io.LineNumberInputStream#reset()
268 * The <code>reset</code> method of
271 * called, and then calls the <code>reset</code> method of the
281 * code to reset the stream and try another parser.
287 public void reset() throws IOException { method in class:LineNumberInputStream
290 in.reset();
H A DReader.java219 * Marks the present position in the stream. Subsequent calls to reset()
226 * reset the stream may fail.
238 * attempt to reset it in some way appropriate to the particular stream,
240 * character-input streams support the reset() operation, and some support
241 * reset() without supporting mark().
245 * or if the stream does not support reset(),
248 public void reset() throws IOException { method in class:Reader
249 throw new IOException("reset() not supported");
255 * mark(), reset(), or skip() invocations will throw an IOException.
H A DStringReader.java157 * Marks the present position in the stream. Subsequent calls to reset()
185 public void reset() throws IOException { method in class:StringReader
195 * ready(), mark(), or reset() invocations will throw an IOException.
/libcore/ojluni/src/main/java/sun/net/www/http/
H A DPosterOutputStream.java90 public synchronized void reset() { method in class:PosterOutputStream
94 super.reset ();
/libcore/ojluni/src/main/java/sun/util/locale/
H A DParseStatus.java40 reset();
43 public void reset() { method in class:ParseStatus
/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/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/org/apache/harmony/xml/parsers/
H A DSAXParserImpl.java56 @Override public void reset() { method in class:SAXParserImpl
/libcore/ojluni/src/main/java/java/text/
H A DCollationElementIterator.java121 public void reset() { method in class:CollationElementIterator
122 icuIterator.reset();
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DByteBufferInputStream.java166 public synchronized void reset() throws IOException { method in class:ByteBufferInputStream
167 throw new IOException("mark/reset not supported");
172 * <code>reset</code> methods.
/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.
/libcore/luni/src/main/java/java/util/concurrent/
H A DCyclicBarrier.java115 * is reset. There can be many generations associated with threads
121 * but no subsequent reset.
140 * on each generation. It is reset to parties on each new
292 * <li>Some other thread invokes {@link #reset} on this barrier.
303 * <p>If the barrier is {@link #reset} while any thread is waiting,
328 * waiting, or the barrier was reset, or the barrier was
355 * <li>Some other thread invokes {@link #reset} on this barrier.
370 * <p>If the barrier is {@link #reset} while any thread is waiting,
399 * waiting, or the barrier was reset, or the barrier was broken
415 * construction or the last reset, o
437 public void reset() { method in class:CyclicBarrier
[all...]
/libcore/luni/src/main/java/java/util/concurrent/atomic/
H A DDoubleAccumulator.java120 public void reset() { method in class:DoubleAccumulator
126 a.reset(identity);
132 * #reset}. This method may apply for example during quiescent
136 * the reset.
138 * @return the value before reset
148 a.reset(identity);
H A DDoubleAdder.java106 public void reset() { method in class:DoubleAdder
112 a.reset();
118 * #reset}. This method may apply for example during quiescent
122 * the reset.
134 a.reset();
H A DLongAccumulator.java117 public void reset() { method in class:LongAccumulator
123 a.reset(identity);
129 * #reset}. This method may apply for example during quiescent
133 * the reset.
135 * @return the value before reset
145 a.reset(identity);
H A DLongAdder.java108 public void reset() { method in class:LongAdder
114 a.reset();
120 * #reset}. This method may apply for example during quiescent
124 * the reset.
136 a.reset();

Completed in 574 milliseconds

1234