HomeSort by relevance Sort by last modified time
    Searched defs:IllegalArgumentException (Results 1 - 25 of 207) 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) {
  /libcore/luni/src/main/java/java/io/
CharArrayReader.java 72 * @throws IllegalArgumentException
84 throw new IllegalArgumentException();
StringWriter.java 56 throw new IllegalArgumentException();
StringReader.java 76 * @throws IllegalArgumentException
86 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/java/util/
EventObject.java 44 throw new IllegalArgumentException();
AbstractQueue.java 62 * @throws IllegalArgumentException if some property of this element
125 * <tt>IllegalArgumentException</tt>. Further, the behavior of
144 * @throws IllegalArgumentException if some property of an element of the
155 throw new IllegalArgumentException();
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
MockedDateFormatSymbolsProvider.java 33 throw new IllegalArgumentException();
MockedDecimalFormatSymbolsProvider.java 34 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/java/net/
URISyntaxException.java 46 * @throws IllegalArgumentException
57 throw new IllegalArgumentException();
ProxySelectorImpl.java 27 throw new IllegalArgumentException();
37 throw new IllegalArgumentException("uri == null");
41 throw new IllegalArgumentException("scheme == null");
CookieManager.java 108 throw new IllegalArgumentException();
160 throw new IllegalArgumentException();
219 } catch (IllegalArgumentException ignored) {
  /libcore/luni/src/main/java/java/nio/
SelectionKeyImpl.java 71 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/java/nio/channels/
FileLock.java 101 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/javax/crypto/spec/
IvParameterSpec.java 56 * @throws IllegalArgumentException
65 throw new IllegalArgumentException();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
ArraysCompatUtils.java 38 if (startIndex > endIndex) throw new IllegalArgumentException();
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java 47 throw new IllegalArgumentException();
Support_StringReader.java 90 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/java/security/
KeyFactory.java 99 * @throws IllegalArgumentException if {@code provider == null || provider.isEmpty()}
104 throw new IllegalArgumentException();
125 * @throws IllegalArgumentException if {@code provider == null}
130 throw new IllegalArgumentException();
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ObjectIdentifier.java 53 * @throws IllegalArgumentException if oid is invalid or null
64 * @throws IllegalArgumentException if oid string is invalid or null
101 * @throws IllegalArgumentException if oid is invalid or null
105 throw new IllegalArgumentException("oid == null");
109 throw new IllegalArgumentException("OID MUST have at least 2 subidentifiers");
113 throw new IllegalArgumentException(
116 throw new IllegalArgumentException("If the first subidentifier has 0 or 1 value the "
122 throw new IllegalArgumentException("Subidentifier MUST have positive value");
156 * @throws IllegalArgumentException if oid string is invalid or null
185 * @throws IllegalArgumentException if oid string is invalid or null an
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_StringWriter.java 47 throw new IllegalArgumentException();
  /packages/apps/Camera/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/src/com/google/common/base/
Preconditions.java 30 * throw new IllegalArgumentException("must be positive: " + count);
67 * @throws IllegalArgumentException if {@code expression} is false
71 throw new IllegalArgumentException();
82 * @throws IllegalArgumentException if {@code expression} is false
86 throw new IllegalArgumentException(String.valueOf(errorMessage));
104 * @throws IllegalArgumentException if {@code expression} is false
112 throw new IllegalArgumentException(
271 * @throws IllegalArgumentException if {@code size} is negative
289 * @throws IllegalArgumentException if {@code size} is negative
303 throw new IllegalArgumentException("negative size: " + size)
    [all...]
  /frameworks/base/location/java/android/location/
Country.java 84 throw new IllegalArgumentException();
94 throw new IllegalArgumentException();

Completed in 6065 milliseconds

1 2 3 4 5 6 7 8 9