OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:illegalargumentexception
(Results
76 - 100
of
10592
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/libcore/luni/src/test/java/tests/security/cert/
CertificateFactory2Test.java
113
fail("
IllegalArgumentException
must be thrown");
115
} catch (
IllegalArgumentException
e) {
117
fail("Unexpected
IllegalArgumentException
was thrown");
210
* throws
IllegalArgumentException
when provider is null or empty;
216
NoSuchProviderException,
IllegalArgumentException
, CRLException {
236
fail("
IllegalArgumentException
must be thrown when provider is null (type: "
238
} catch (
IllegalArgumentException
e) {
242
fail("
IllegalArgumentException
must be thrown when provider is empty (type: "
244
} catch (
IllegalArgumentException
e) {
276
* throws
IllegalArgumentException
when provider is null
[
all
...]
/libcore/ojluni/src/main/java/java/sql/
Time.java
46
* <code>java.lang.
IllegalArgumentException
</code>.
97
if (s == null) throw new java.lang.
IllegalArgumentException
();
108
throw new java.lang.
IllegalArgumentException
();
151
* @exception java.lang.
IllegalArgumentException
if this
158
throw new java.lang.
IllegalArgumentException
();
165
* @exception java.lang.
IllegalArgumentException
if this
172
throw new java.lang.
IllegalArgumentException
();
179
* @exception java.lang.
IllegalArgumentException
if this
185
throw new java.lang.
IllegalArgumentException
();
192
* @exception java.lang.
IllegalArgumentException
if thi
[
all
...]
/frameworks/base/core/java/android/hardware/camera2/utils/
SurfaceUtils.java
78
* @throws
IllegalArgumentException
if the surface is already abandoned.
84
throw new
IllegalArgumentException
("Surface was abandoned", e);
94
* @throws
IllegalArgumentException
if the surface is already abandoned.
100
throw new
IllegalArgumentException
("Surface was abandoned", e);
110
* @throws
IllegalArgumentException
if the surface is already abandoned.
116
throw new
IllegalArgumentException
("Surface was abandoned", e);
138
throw new
IllegalArgumentException
("Surface format(" + surfaceFormat + ") is not"
154
throw new
IllegalArgumentException
("Output target surface list must not be null and"
165
throw new
IllegalArgumentException
("Fps range " + fpsRange.toString() + " in the"
178
throw new
IllegalArgumentException
("Surface size " + surfaceSize.toString() + " is
[
all
...]
/cts/tests/tests/accounts/src/android/accounts/cts/
AccountTest.java
21
} catch (
IllegalArgumentException
expectedException) {
29
} catch (
IllegalArgumentException
expectedException) {
AuthenticatorDescriptionTest.java
22
} catch (
IllegalArgumentException
expectedException) {
30
} catch (
IllegalArgumentException
expectedException) {
/dalvik/dx/tests/081-dex-throws-list/
Blort.java
25
throws Throwable,
IllegalArgumentException
{
26
throw new
IllegalArgumentException
();
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
TestUtils.java
159
throws
IllegalArgumentException
{
168
throws
IllegalArgumentException
{
177
throws
IllegalArgumentException
, MathException {
185
throws
IllegalArgumentException
, MathException {
194
throws
IllegalArgumentException
, MathException {
202
throws
IllegalArgumentException
, MathException {
211
throws
IllegalArgumentException
, MathException {
219
throws
IllegalArgumentException
, MathException {
227
throws
IllegalArgumentException
{
235
throws
IllegalArgumentException
{
[
all
...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
RealTransformer.java
40
* @throws
IllegalArgumentException
if any parameters are invalid
43
throws
IllegalArgumentException
;
53
* @throws
IllegalArgumentException
if any parameters are invalid
56
throws FunctionEvaluationException,
IllegalArgumentException
;
62
* @throws
IllegalArgumentException
if any parameters are invalid
65
throws
IllegalArgumentException
;
75
* @throws
IllegalArgumentException
if any parameters are invalid
78
throws FunctionEvaluationException,
IllegalArgumentException
;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERExternalParser.java
42
catch (
IllegalArgumentException
e)
63
catch (
IllegalArgumentException
ioe)
DERGraphicString.java
18
* @exception
IllegalArgumentException
if the object cannot be converted.
37
throw new
IllegalArgumentException
("encoding error in getInstance: " + e.toString());
41
throw new
IllegalArgumentException
("illegal object in getInstance: " + obj.getClass().getName());
50
* @exception
IllegalArgumentException
if the tagged object cannot
DERVideotexString.java
18
* @exception
IllegalArgumentException
if the object cannot be converted.
37
throw new
IllegalArgumentException
("encoding error in getInstance: " + e.toString());
41
throw new
IllegalArgumentException
("illegal object in getInstance: " + obj.getClass().getName());
50
* @exception
IllegalArgumentException
if the tagged object cannot
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DHDomainParameters.java
41
throw new
IllegalArgumentException
("Invalid DHDomainParameters: "
50
throw new
IllegalArgumentException
("'p' cannot be null");
54
throw new
IllegalArgumentException
("'g' cannot be null");
58
throw new
IllegalArgumentException
("'q' cannot be null");
73
throw new
IllegalArgumentException
("'p' cannot be null");
77
throw new
IllegalArgumentException
("'g' cannot be null");
81
throw new
IllegalArgumentException
("'q' cannot be null");
95
throw new
IllegalArgumentException
("Bad sequence size: " + seq.size());
ValidationParams.java
52
throw new
IllegalArgumentException
("'seed' cannot be null");
63
throw new
IllegalArgumentException
("'seed' cannot be null");
67
throw new
IllegalArgumentException
("'pgenCounter' cannot be null");
78
throw new
IllegalArgumentException
("Bad sequence size: " + seq.size());
/external/mockito/src/main/java/org/mockito/internal/util/collections/
Iterables.java
33
* @throws
IllegalArgumentException
when supplied iterable is empty
38
throw new
IllegalArgumentException
("Cannot provide 1st element from empty iterable: " + iterable);
/external/mockito/src/test/java/org/mockito/internal/util/
ChecksTest.java
30
expectedException.expect(
IllegalArgumentException
.class);
37
expectedException.expect(
IllegalArgumentException
.class);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentProviderResult.java
15
public void __constructor__(Uri uri) throws SecurityException, NoSuchFieldException,
IllegalArgumentException
, IllegalAccessException {
21
public void __constructor__(int count) throws SecurityException, NoSuchFieldException,
IllegalArgumentException
, IllegalAccessException {
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowContentProviderResult.java
16
throws SecurityException, NoSuchFieldException,
IllegalArgumentException
,
25
throws SecurityException, NoSuchFieldException,
IllegalArgumentException
,
/libcore/luni/src/test/java/tests/security/spec/
ECParameterSpecTest.java
57
* case 5:
IllegalArgumentException
- if n is not positive
58
* case 6:
IllegalArgumentException
- if h is not positive
94
// case 5:
IllegalArgumentException
- if n is not positive.
97
fail("
IllegalArgumentException
exception has not been thrown");
98
} catch (
IllegalArgumentException
e) {
102
// case 6:
IllegalArgumentException
- if h is not positive.
105
fail("
IllegalArgumentException
exception has not been thrown");
106
} catch (
IllegalArgumentException
e) {
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
RegexFileFilter.java
55
* @throws
IllegalArgumentException
if the pattern is null
59
throw new
IllegalArgumentException
("Pattern is missing");
70
* @throws
IllegalArgumentException
if the pattern is null
74
throw new
IllegalArgumentException
("Pattern is missing");
88
* @throws
IllegalArgumentException
if the pattern is null
92
throw new
IllegalArgumentException
("Pattern is missing");
101
* @throws
IllegalArgumentException
if the pattern is null
105
throw new
IllegalArgumentException
("Pattern is missing");
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
MediaTypeTest.java
55
} catch (
IllegalArgumentException
expected) {}
62
} catch (
IllegalArgumentException
expected) {}
69
} catch (
IllegalArgumentException
expected) {}
146
} catch (
IllegalArgumentException
expected) {}
165
} catch (
IllegalArgumentException
expected) {}
205
} catch (
IllegalArgumentException
expected) {}
212
} catch (
IllegalArgumentException
expected) {}
216
} catch (
IllegalArgumentException
expected) {}
220
} catch (
IllegalArgumentException
expected) {}
224
} catch (
IllegalArgumentException
expected) {
[
all
...]
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/
com_github_javaparser_ast_comments_Comment.txt
22
Line 99) new
IllegalArgumentException
() ==> java.lang.
IllegalArgumentException
24
Line 103) new
IllegalArgumentException
() ==> java.lang.
IllegalArgumentException
/frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetProgramInfoLog.cpp
12
jniThrowException(_env, "java/lang/
IllegalArgumentException
", "out of memory");
/libcore/harmony-tests/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationFormatErrorTest.java
41
IllegalArgumentException
iae = new
IllegalArgumentException
();
51
IllegalArgumentException
iae = new
IllegalArgumentException
();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
RoundingModeTest.java
39
fail("
IllegalArgumentException
expected for RoundingMode(13)");
40
} catch (
IllegalArgumentException
e) {
44
fail("
IllegalArgumentException
expected for RoundingMode(-1)");
45
} catch (
IllegalArgumentException
e) {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ServiceConfigurationErrorTest.java
48
IllegalArgumentException
iae = new
IllegalArgumentException
(
65
new
IllegalArgumentException
("info in the IAE")));
75
new
IllegalArgumentException
("info in the IAE"));
Completed in 2636 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>