/cts/tests/autofillservice/src/android/autofillservice/cts/ |
SaveInfoTest.java | 41 assertThrows(IllegalArgumentException.class, 47 assertThrows(IllegalArgumentException.class, 53 assertThrows(IllegalArgumentException.class, 68 assertThrows(IllegalArgumentException.class, ()-> builder.setOptionalIds(null)); 75 assertThrows(IllegalArgumentException.class, 83 assertThrows(IllegalArgumentException.class, 92 assertThrows(IllegalArgumentException.class, 95 assertThrows(IllegalArgumentException.class, 98 assertThrows(IllegalArgumentException.class, 101 assertThrows(IllegalArgumentException.class [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
RSAKeyParameters.java | 24 throw new IllegalArgumentException("RSA publicExponent is even"); 36 throw new IllegalArgumentException("RSA modulus is even"); 46 throw new IllegalArgumentException("RSA modulus has a small prime factor");
|
RSAKeyGenerationParameters.java | 24 throw new IllegalArgumentException("key strength too small"); 32 throw new IllegalArgumentException("public exponent cannot be even");
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/field/ |
FiniteFields.java | 14 throw new IllegalArgumentException("Irreducible polynomials in GF(2) must have constant term"); 20 throw new IllegalArgumentException("Polynomial exponents must be montonically increasing"); 37 throw new IllegalArgumentException("'characteristic' must be >= 2");
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
Preconditions.java | 43 throw new IllegalArgumentException( 50 throw new IllegalArgumentException( 58 throw new IllegalArgumentException( 66 throw new IllegalArgumentException( 74 throw new IllegalArgumentException( 82 throw new IllegalArgumentException( 90 throw new IllegalArgumentException( 98 throw new IllegalArgumentException( 106 throw new IllegalArgumentException( 114 throw new IllegalArgumentException( [all...] |
/libcore/luni/src/test/java/tests/java/security/ |
AlgorithmParameterGeneratorSpiTest.java | 54 fail("IllegalArgumentException must be thrown"); 55 } catch (IllegalArgumentException e) { 62 fail("IllegalArgumentException must be thrown"); 63 } catch (IllegalArgumentException e) { 67 fail("IllegalArgumentException must be thrown"); 68 } catch (IllegalArgumentException e) {
|
/dalvik/dx/tests/081-dex-throws-list/ |
Blort.class | |
expected.txt | 4 system-annotation dalvik.annotation.Throws {value: {java.lang.Throwable, java.lang.IllegalArgumentException}}
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
DateTest.java | 141 * an IllegalArgumentException 148 fail("Should throw IllegalArgumentException."); 149 } catch (IllegalArgumentException ie) { 156 * throws an IllegalArgumentException 163 fail("Should throw IllegalArgumentException."); 164 } catch (IllegalArgumentException ie) { 171 * throws an IllegalArgumentException 178 fail("Should throw IllegalArgumentException."); 179 } catch (IllegalArgumentException ie) { 186 * throws an IllegalArgumentException [all...] |
/external/testng/src/test/java/test/invokedmethodlistener/ |
Sample2.java | 10 @Test(expectedExceptions = IllegalArgumentException.class) 12 throw new IllegalArgumentException("Throw this exception on purpose in test");
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
NativeUtil.java | 50 * @throws IllegalArgumentException if a null or unencodable string is sent. 54 throw new IllegalArgumentException("null string"); 64 throw new IllegalArgumentException("cannot be utf-8 encoded", cce); 72 * @throws IllegalArgumentException if a null byte array list is sent. 76 throw new IllegalArgumentException("null byte array list"); 91 * @throws IllegalArgumentException if a null string is sent. 95 throw new IllegalArgumentException("null string"); 104 * @throws IllegalArgumentException if a null byte array is sent. 108 throw new IllegalArgumentException("null byte array"); 119 * @throws IllegalArgumentException for various malformed inputs [all...] |
/libcore/luni/src/test/java/libcore/java/math/ |
MathContextTest.java | 43 } catch (IllegalArgumentException expected) { 48 } catch (IllegalArgumentException expected) { 55 } catch (IllegalArgumentException expected) { 62 } catch (IllegalArgumentException expected) { 67 } catch (IllegalArgumentException expected) { 72 } catch (IllegalArgumentException expected) { 79 } catch (IllegalArgumentException expected) { 84 } catch (IllegalArgumentException expected) {
|
/cts/tests/tests/location/src/android/location/cts/ |
GeocoderTest.java | 93 fail("should throw IllegalArgumentException"); 94 } catch (IllegalArgumentException e) { 100 fail("should throw IllegalArgumentException"); 101 } catch (IllegalArgumentException e) { 107 fail("should throw IllegalArgumentException"); 108 } catch (IllegalArgumentException e) { 114 fail("should throw IllegalArgumentException"); 115 } catch (IllegalArgumentException e) { 144 fail("should throw IllegalArgumentException"); 145 } catch (IllegalArgumentException e) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
GraphicsUtilities.java | 59 throw new IllegalArgumentException("image data must not be null"); 105 throw new IllegalArgumentException("data must not be null"); 108 throw new IllegalArgumentException("out array must not be null"); 111 throw new IllegalArgumentException("out array length must be > height"); 114 throw new IllegalArgumentException("image height must be > (y + height)"); 117 throw new IllegalArgumentException("argument x, y must be >= 0"); 120 throw new IllegalArgumentException("argument x must be < data.width"); 123 throw new IllegalArgumentException("argument y must be < data.height"); 126 throw new IllegalArgumentException("argument height must be > 0"); 142 throw new IllegalArgumentException("data must not be null") [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
Preconditions.java | 33 throw new IllegalArgumentException(); 43 * @throws IllegalArgumentException if {@code expression} is false 47 throw new IllegalArgumentException(String.valueOf(errorMessage)); 58 * @throws IllegalArgumentException if {@code expression} is false 64 throw new IllegalArgumentException(String.format(messageTemplate, messageArgs)); 74 * @throws IllegalArgumentException if {@code string} is empty 78 throw new IllegalArgumentException(); 91 * @throws IllegalArgumentException if {@code string} is empty 96 throw new IllegalArgumentException(String.valueOf(errorMessage)); 186 throw new IllegalArgumentException("Requested flags 0x [all...] |
/frameworks/base/media/java/android/media/audiopolicy/ |
AudioMix.java | 217 * @throws IllegalArgumentException 221 throws IllegalArgumentException { 223 throw new IllegalArgumentException("Illegal null AudioMixingRule argument"); 233 * @throws IllegalArgumentException 236 throws IllegalArgumentException { 238 throw new IllegalArgumentException("Illegal null AudioMixingRule argument"); 249 * @throws IllegalArgumentException 251 Builder setCallbackFlags(int flags) throws IllegalArgumentException { 253 throw new IllegalArgumentException("Illegal callback flags 0x" 277 * @throws IllegalArgumentException [all...] |
/dalvik/dx/tests/080-dex-exception-tables/ |
Blort.class | |
/external/junit-params/src/test/java/junitparams/ |
WrongArgumentsNumberTest.java | 9 @Test(expected = IllegalArgumentException.class)
|
/external/nist-sip/java/javax/sip/ |
DialogState.java | 16 throw new IllegalArgumentException(
|
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glBindVertexBuffer.cpp | 6 jniThrowException(_env, "java/lang/IllegalArgumentException", "offset too large");
|
glShaderSource.cpp | 9 jniThrowException(_env, "java/lang/IllegalArgumentException", "string == null");
|
/frameworks/support/core/ktx/src/main/java/androidx/core/content/res/ |
TypedArray.kt | 31 throw IllegalArgumentException("Attribute not defined in set.") 36 * Retrieve the boolean value for the attribute at [index] or throws [IllegalArgumentException] 48 * Retrieve the color value for the attribute at [index] or throws [IllegalArgumentException] 62 * [IllegalArgumentException] if not defined. 75 * Retrieve the dimension value for the attribute at [index] or throws [IllegalArgumentException] 88 * [IllegalArgumentException] if not defined. 101 * [IllegalArgumentException] if not defined. 113 * Retrieve the drawable value for the attribute at [index] or throws [IllegalArgumentException] 125 * Retrieve the float value for the attribute at [index] or throws [IllegalArgumentException] 137 * Retrieve the font value for the attribute at [index] or throws [IllegalArgumentException] [all...] |
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
X509TrustManagerImpl.java | 13 throw new IllegalArgumentException("null or zero-length certificate chain"); 15 throw new IllegalArgumentException("null or zero-length authentication type"); 28 throw new IllegalArgumentException("null or zero-length certificate chain"); 30 throw new IllegalArgumentException("null or zero-length authentication type");
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
FieldVector.java | 64 * @throws IllegalArgumentException if v is not the same size as this 67 throws IllegalArgumentException; 73 * @throws IllegalArgumentException if v is not the same size as this 76 throws IllegalArgumentException; 82 * @throws IllegalArgumentException if v is not the same size as this 85 throws IllegalArgumentException; 91 * @throws IllegalArgumentException if v is not the same size as this 94 throws IllegalArgumentException; 173 * @throws IllegalArgumentException if v is not the same size as this 175 FieldVector<T> ebeMultiply(FieldVector<T> v) throws IllegalArgumentException; [all...] |
/external/guava/guava/src/com/google/common/math/ |
MathPreconditions.java | 32 throw new IllegalArgumentException(role + " (" + x + ") must be > 0"); 39 throw new IllegalArgumentException(role + " (" + x + ") must be > 0"); 46 throw new IllegalArgumentException(role + " (" + x + ") must be > 0"); 53 throw new IllegalArgumentException(role + " (" + x + ") must be >= 0"); 60 throw new IllegalArgumentException(role + " (" + x + ") must be >= 0"); 67 throw new IllegalArgumentException(role + " (" + x + ") must be >= 0"); 74 throw new IllegalArgumentException(role + " (" + x + ") must be >= 0");
|