HomeSort by relevance Sort by last modified time
    Searched defs:IllegalStateException (Results 1 - 25 of 190) sorted by null

1 2 3 4 5 6 7 8

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/
IllegalStateException.java 25 public class IllegalStateException extends MockFtpServerException {
30 public IllegalStateException(String message) {
37 public IllegalStateException(Throwable cause) {
45 public IllegalStateException(String message, Throwable cause) {
  /libcore/ojluni/src/main/java/java/lang/
IllegalStateException.java 38 class IllegalStateException extends RuntimeException {
40 * Constructs an IllegalStateException with no detail message.
43 public IllegalStateException() {
48 * Constructs an IllegalStateException with the specified detail
54 public IllegalStateException(String s) {
74 public IllegalStateException(String message, Throwable cause) {
92 public IllegalStateException(Throwable cause) {
  /external/dagger2/core/src/main/java/dagger/internal/
DelegateFactory.java 31 throw new IllegalStateException();
41 throw new IllegalStateException();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalIterable.java 84 throw new IllegalStateException();
  /external/r8/src/test/examples/trycatchmany/
TryCatchMany.java 20 } catch (IllegalStateException e) {
32 } catch (IllegalStateException e) {
38 throw new IllegalStateException();
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ZOrderingActivity.java 16 if (grandParent == null) throw new IllegalStateException();
  /packages/apps/Messaging/src/com/android/messaging/datamodel/binding/
BindableOnceData.java 29 throw new IllegalStateException();
BindableData.java 39 throw new IllegalStateException();
49 throw new IllegalStateException();
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSource.java 50 throw new IllegalStateException();
MemoryByteCode.java 45 throw new IllegalStateException();
54 throw new IllegalStateException();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
GLVMultiplier.java 27 throw new IllegalStateException();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
RecordingOkAuthenticator.java 35 if (responses.size() != 1) throw new IllegalStateException();
40 if (proxies.size() != 1) throw new IllegalStateException();
  /libcore/luni/src/main/java/libcore/util/
CollectionUtils.java 62 throw new IllegalStateException();
72 throw new IllegalStateException();
  /libcore/ojluni/src/main/java/java/lang/invoke/
ConstantCallSite.java 69 * will result in an {@code IllegalStateException}.
92 * @throws IllegalStateException if the {@code ConstantCallSite} constructor has not completed
95 if (!isFrozen) throw new IllegalStateException();
114 * @throws IllegalStateException if the {@code ConstantCallSite} constructor has not completed
  /libcore/ojluni/src/main/java/java/nio/file/
FileTreeIterator.java 103 throw new IllegalStateException();
111 throw new IllegalStateException();
  /packages/apps/Launcher3/src/com/android/launcher3/util/
Preconditions.java 31 throw new IllegalStateException();
37 throw new IllegalStateException();
43 throw new IllegalStateException();
49 throw new IllegalStateException();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
AbstractFsObject.java 76 * {@code IllegalStateException} if it is not.
78 * @throws IllegalStateException if this object was invalidated
83 protected final void checkValid() throws IllegalStateException {
84 if (!isValid()) throw new IllegalStateException(
92 * @throws IllegalStateException if this object was invalidated
98 throws IllegalStateException, ReadOnlyException {
  /external/sfntly/cpp/src/sfntly/port/
exception_type.h 113 class IllegalStateException : public Exception {
115 IllegalStateException() throw() : Exception("Illegal state") {}
116 explicit IllegalStateException(const char* message) throw()
118 virtual ~IllegalStateException() throw() {}
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
TypeNames.java 100 throw new IllegalStateException();
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
ServerPairingSession.java 101 throw new IllegalStateException(); // should never happen
  /external/libbackup/src/com/google/android/libraries/backup/
PreferenceBackupUtil.java 59 throw new IllegalStateException();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
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();
  /external/vogar/src/vogar/
LocalTarget.java 88 throw new IllegalStateException();
  /external/vogar/src/vogar/tasks/
Task.java 87 throw new IllegalStateException();
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
LinkedNode.java 36 if (mNext == this) throw new IllegalStateException();

Completed in 1762 milliseconds

1 2 3 4 5 6 7 8