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

1 2 3 4 5 6 7 8 9

  /dalvik/dx/tests/081-dex-throws-list/
Blort.java 25 throws Throwable, IllegalArgumentException {
26 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/java/lang/
IllegalArgumentException.java 24 public class IllegalArgumentException extends RuntimeException {
29 * Constructs a new {@code IllegalArgumentException} that includes the
32 public IllegalArgumentException() {
36 * Constructs a new {@code IllegalArgumentException} with the current stack
42 public IllegalArgumentException(String detailMessage) {
47 * Constructs a new {@code IllegalArgumentException} with the current stack
56 public IllegalArgumentException(String message, Throwable cause) {
61 * Constructs a new {@code IllegalArgumentException} with the current stack
68 public IllegalArgumentException(Throwable cause) {
  /external/okhttp/okio/src/main/java/okio/
SegmentPool.java 52 if (segment.next != null || segment.prev != null) throw new IllegalArgumentException();
Segment.java 84 if (aSize <= 0 || bSize <= 0) throw new IllegalArgumentException();
122 if (byteCount + (sink.limit - sink.pos) > SIZE) throw new IllegalArgumentException();
  /libcore/luni/src/main/java/java/io/
CharArrayReader.java 72 * @throws IllegalArgumentException
84 throw new IllegalArgumentException();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CollectionUtils.java 34 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/java/nio/
SelectionKeyImpl.java 71 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/javax/crypto/spec/
IvParameterSpec.java 56 * @throws IllegalArgumentException
65 throw new IllegalArgumentException();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
Lerper.java 30 if (divisor < 1f) throw new IllegalArgumentException();
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
exception_type.h 105 class IllegalArgumentException : public Exception {
107 IllegalArgumentException() throw() : Exception("Illegal argument") {}
108 explicit IllegalArgumentException(const char* message) throw()
110 virtual ~IllegalArgumentException() throw() {}
  /external/sfntly/cpp/src/sfntly/port/
exception_type.h 105 class IllegalArgumentException : public Exception {
107 IllegalArgumentException() throw() : Exception("Illegal argument") {}
108 explicit IllegalArgumentException(const char* message) throw()
110 virtual ~IllegalArgumentException() throw() {}
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java 47 throw new IllegalArgumentException();
Support_StringReader.java 85 throw new IllegalArgumentException();
  /frameworks/base/drm/java/android/drm/
DrmInfo.java 57 throw new IllegalArgumentException(msg);
76 // call would fail with IllegalArgumentException because of mData = null
84 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/java/net/
ProxySelectorImpl.java 27 throw new IllegalArgumentException();
37 throw new IllegalArgumentException("uri == null");
41 throw new IllegalArgumentException("scheme == null");
  /libcore/luni/src/main/java/java/security/
AlgorithmParameterGenerator.java 113 * @throws IllegalArgumentException if {@code provider == null || provider.isEmpty()}
121 throw new IllegalArgumentException();
145 * @throws IllegalArgumentException if {@code provider == null}
150 throw new IllegalArgumentException("provider == null");
KeyFactory.java 99 * @throws IllegalArgumentException if {@code provider == null || provider.isEmpty()}
104 throw new IllegalArgumentException();
126 * @throws IllegalArgumentException if {@code provider == null}
131 throw new IllegalArgumentException("provider == null");
  /libcore/support/src/test/java/tests/support/
Support_StringWriter.java 47 throw new IllegalArgumentException();
  /packages/apps/LegacyCamera/src/com/android/camera/
PreviewFrameLayout.java 44 if (ratio <= 0.0) throw new IllegalArgumentException();
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemAttribute.java 270 throw new IllegalArgumentException();
  /external/guava/guava/src/com/google/common/base/
Preconditions.java 31 * throw new IllegalArgumentException("must be positive: " + count);
68 * @throws IllegalArgumentException if {@code expression} is false
72 throw new IllegalArgumentException();
83 * @throws IllegalArgumentException if {@code expression} is false
88 throw new IllegalArgumentException(String.valueOf(errorMessage));
106 * @throws IllegalArgumentException if {@code expression} is false
115 throw new IllegalArgumentException(
277 * @throws IllegalArgumentException if {@code size} is negative
295 * @throws IllegalArgumentException if {@code size} is negative
310 throw new IllegalArgumentException("negative size: " + size)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 106 throw new IllegalArgumentException(); // TODO: ProtocolException?
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAccount.java 54 if (TextUtils.isEmpty(name) || TextUtils.isEmpty(type)) throw new IllegalArgumentException();
ShadowService.java 44 throw new IllegalArgumentException();
  /frameworks/base/core/java/android/view/textservice/
SentenceSuggestionsInfo.java 51 throw new IllegalArgumentException();

Completed in 405 milliseconds

1 2 3 4 5 6 7 8 9