HomeSort by relevance Sort by last modified time
    Searched refs:IllegalStateException (Results 26 - 50 of 1476) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
BlockCipher.java 45 * @exception IllegalStateException if the cipher isn't initialised.
49 throws DataLengthException, IllegalStateException;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DecoderException.java 4 extends IllegalStateException
EncoderException.java 4 extends IllegalStateException
  /external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
DummyMouseInput.java 47 throw new IllegalStateException("Input not initialized.");
  /libcore/luni/src/main/java/javax/crypto/
KeyAgreementSpi.java 53 * @throws IllegalStateException
57 throws InvalidKeyException, IllegalStateException;
63 * @throws IllegalStateException
67 throws IllegalStateException;
78 * @throws IllegalStateException
84 throws IllegalStateException, ShortBufferException;
93 * @throws IllegalStateException
103 throws IllegalStateException, NoSuchAlgorithmException,
Mac.java 234 * @throws IllegalStateException
237 public final void update(byte input) throws IllegalStateException {
239 throw new IllegalStateException();
254 * @throws IllegalStateException
260 public final void update(byte[] input, int offset, int len) throws IllegalStateException {
262 throw new IllegalStateException();
280 * @throws IllegalStateException
283 public final void update(byte[] input) throws IllegalStateException {
285 throw new IllegalStateException();
299 * @throws IllegalStateException
    [all...]
  /external/apache-http/src/org/apache/http/
HttpResponse.java 96 * @throws IllegalStateException
104 throws IllegalStateException;
114 * @throws IllegalStateException
121 throws IllegalStateException;
  /external/protobuf/java/src/main/java/com/google/protobuf/
Internal.java 78 throw new IllegalStateException(
97 throw new IllegalStateException(
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
InternalNano.java 78 throw new IllegalStateException(
97 throw new IllegalStateException(
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLContextImpl.java 40 throw new IllegalStateException("SSLContext is not initialized.");
48 throw new IllegalStateException("SSLContext is not initialized.");
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
AbstractFileSystem.java 69 * @throws IllegalStateException if this {@code FileSystem} was
74 protected final void checkClosed() throws IllegalStateException {
76 throw new IllegalStateException("file system was already closed");
  /frameworks/base/media/java/android/media/audiofx/
Visualizer.java 251 * @throws IllegalStateException
254 throws IllegalStateException {
257 throw(new IllegalStateException("setEnabled() called in wrong state: "+mState));
279 throw(new IllegalStateException("getEnabled() called in wrong state: "+mState));
308 * @throws IllegalStateException
311 throws IllegalStateException {
314 throw(new IllegalStateException("setCaptureSize() called in wrong state: "+mState));
325 throws IllegalStateException {
328 throw(new IllegalStateException("getCaptureSize() called in wrong state: "+mState));
340 * @throws IllegalStateException
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
ObservableTest.java 37 fail("unregisterObserver should throw a IllegalStateException here.");
38 } catch (IllegalStateException e) {
54 fail("registerObserver should throw a IllegalStateException here.");
55 } catch (IllegalStateException e) {
64 fail("unregisterObserver should throw a IllegalStateException here.");
65 } catch (IllegalStateException e) {
81 fail("registerObserver should throw a IllegalStateException here.");
82 } catch (IllegalStateException e) {
86 fail("registerObserver should throw a IllegalStateException here.");
87 } catch (IllegalStateException e)
    [all...]
  /external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyKeyAgreementSpi.java 45 throws InvalidKeyException, IllegalStateException {
47 throw new IllegalStateException("last Phase is false");
53 protected byte[] engineGenerateSecret() throws IllegalStateException {
59 throws IllegalStateException, ShortBufferException {
65 throws IllegalStateException, NoSuchAlgorithmException,
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyKeyAgreementSpi.java 46 throws InvalidKeyException, IllegalStateException {
48 throw new IllegalStateException("last Phase is false");
54 protected byte[] engineGenerateSecret() throws IllegalStateException {
60 throws IllegalStateException, ShortBufferException {
66 throws IllegalStateException, NoSuchAlgorithmException,
  /external/apache-http/src/org/apache/http/entity/
BasicHttpEntity.java 74 * @throws IllegalStateException
79 throws IllegalStateException {
81 throw new IllegalStateException("Content has not been provided");
84 throw new IllegalStateException("Content has been consumed");
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Ping.java 33 if (sent != -1) throw new IllegalStateException();
38 if (received != -1 || sent == -1) throw new IllegalStateException();
44 if (received != -1 || sent == -1) throw new IllegalStateException();
  /frameworks/base/core/java/com/android/internal/util/
JournaledFile.java 73 throw new IllegalStateException("uncommitted write already in progress");
100 throw new IllegalStateException("no file to commit");
111 throw new IllegalStateException("no file to roll back");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
Matcher2Test.java 44 fail("IllegalStateException expected");
45 } catch (IllegalStateException e) {
50 fail("IllegalStateException expected");
51 } catch (IllegalStateException e) {
56 fail("IllegalStateException expected");
57 } catch (IllegalStateException e) {
62 fail("IllegalStateException expected");
63 } catch (IllegalStateException e) {
68 fail("IllegalStateException expected");
69 } catch (IllegalStateException e)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Matcher2Test.java 42 fail("IllegalStateException expected");
43 } catch (IllegalStateException e) {
48 fail("IllegalStateException expected");
49 } catch (IllegalStateException e) {
54 fail("IllegalStateException expected");
55 } catch (IllegalStateException e) {
60 fail("IllegalStateException expected");
61 } catch (IllegalStateException e) {
66 fail("IllegalStateException expected");
67 } catch (IllegalStateException e)
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
FragmentTest.java 37 throw new IllegalStateException("Shouldn't call constructor");
50 // Should get an exception and it shouldn't be an IllegalStateException
51 assertFalse(e instanceof IllegalStateException);
  /cts/tools/dex-tools/test/dex/reader/util/
MemoryByteCode.java 45 throw new IllegalStateException();
54 throw new IllegalStateException();
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherOutputStreamTest.java 34 fail("IllegalStateException expected");
35 } catch (IllegalStateException e) {
43 fail("IllegalStateException expected");
44 } catch (IllegalStateException e) {
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Internal.java 78 throw new IllegalStateException(
97 throw new IllegalStateException(
  /frameworks/base/core/java/android/database/
Observable.java 41 * @throws IllegalStateException the observer is already registered
49 throw new IllegalStateException("Observer " + observer + " is already registered.");
60 * @throws IllegalStateException the observer is not yet registered
69 throw new IllegalStateException("Observer " + observer + " was not registered.");

Completed in 1406 milliseconds

12 3 4 5 6 7 8 91011>>