HomeSort by relevance Sort by last modified time
    Searched defs:reset (Results 226 - 250 of 5406) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
ProxyReader.java 115 * Invokes the delegate's <code>reset()</code> method.
118 public synchronized void reset() throws IOException { method in class:ProxyReader
119 in.reset();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
CloseShieldInputStream.java 72 * @see java.io.FilterInputStream#reset()
74 public synchronized void reset() throws IOException { method in class:CloseShieldInputStream
76 is.reset();
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMADecoder.java 29 reset(); method
32 public void reset() { method in class:LZMADecoder
33 super.reset();
34 literalDecoder.reset();
35 matchLenDecoder.reset();
36 repLenDecoder.reset();
144 void reset() { method in class:LZMADecoder.LiteralDecoder
146 subdecoders[i].reset(); method
  /frameworks/support/media/src/androidTest/java/androidx/media/
MediaPlayer2Test.java 125 onSetDataSourceCalled.reset();
182 onPlayCalled.reset();
190 onLoopCurrentCalled.reset();
202 onSeekToCalled.reset();
211 onPlayCalled.reset();
217 mp.reset();
222 onPrepareCalled.reset();
227 onPlayCalled.reset();
283 onPlayCalled.reset();
289 onLoopCurrentCalled.reset();
    [all...]
  /external/apache-http/src/org/apache/http/impl/
HttpConnectionMetricsImpl.java 139 public void reset() { method in class:HttpConnectionMetricsImpl
141 this.outTransportMetric.reset();
144 this.inTransportMetric.reset();
  /external/replicaisland/src/com/replica/replicaisland/
InputXY.java 84 public void reset() { method in class:InputXY
85 mXAxis.reset();
86 mYAxis.reset();
DynamicCollisionComponent.java 38 reset(); method
42 public void reset() { method in class:DynamicCollisionComponent
68 mBoundingVolume.reset();
InventoryComponent.java 26 reset(); method
31 public void reset() { method in class:InventoryComponent
33 mInventory.reset();
69 public void reset() { method in class:InventoryComponent.UpdateRecord
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
MultiplePartitionsActivity.java 119 mCredentialsPartition.reset();
120 mCcPartition.reset();
VirtualSignInActivity.java 75 mUsernameLine.reset();
76 mPasswordLine.reset();
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
VirtualSignInActivity.java 74 mUsernameLine.reset();
75 mPasswordLine.reset();
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/edgecases/
MultiplePartitionsActivity.java 110 mCredentialsPartition.reset();
111 mCcPartition.reset();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Parser.java 48 public void reset() { method in class:Parser
49 super.reset(); // reset all recognizer state variables
79 /** Set the token stream and reset the parser */
82 reset(); method
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 54 public void reset() { method in class:OpenSSLDigest
55 delegate.reset();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
OFBBlockCipher.java 79 reset(); method
89 reset(); method
147 * reset the feedback vector back to the IV and reset the underlying
150 public void reset() method in class:OFBBlockCipher
155 cipher.reset();
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLBIOSource.java 95 public void reset() throws IOException { method in class:OpenSSLBIOSource.ByteBufferInputStream
96 source.reset();
  /external/proguard/src/proguard/obfuscate/
DictionaryNameFactory.java 140 public void reset() method in class:DictionaryNameFactory
144 nameFactory.reset();
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowUsbManagerTest.java 79 public void reset() { method in class:ShadowUsbManagerTest
87 shadowUsbManager.reset();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAssetInputStream.java 71 protected void reset() throws IOException { method in class:ShadowAssetInputStream
72 delegate.reset();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
AssistOrbContainer.java 65 reset(); method
83 private void reset() { method in class:AssistOrbContainer
85 mOrb.reset();
  /frameworks/base/services/core/java/com/android/server/wm/
WindowManagerThreadPriorityBooster.java 56 // boosting it might mess up the priority because we reset it the the previous priority.
65 public void reset() { method in class:WindowManagerThreadPriorityBooster
72 super.reset();
  /frameworks/layoutlib/remote/common/src/com/android/layout/remote/util/
StreamUtil.java 82 public synchronized void reset() throws IOException { method in class:StreamUtil
83 is.reset();
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ExtendedWifiInfo.java 37 public void reset() { method in class:ExtendedWifiInfo
38 super.reset();
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidChecksumTest.java 48 adler.reset();
63 crc.reset();
87 adler.reset();
  /libcore/ojluni/src/main/java/java/io/
LineNumberInputStream.java 246 * call to the {@code reset} method repositions this stream at
257 * @see java.io.LineNumberInputStream#reset()
269 * The {@code reset} method of
272 * called, and then calls the {@code reset} method of the
282 * code to reset the stream and try another parser.
288 public void reset() throws IOException { method in class:LineNumberInputStream
291 in.reset();

Completed in 740 milliseconds

1 2 3 4 5 6 7 8 91011>>