OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NullPointerException
(Results
476 - 500
of
1588
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/libcore/luni/src/test/java/libcore/java/util/jar/
OldJarEntryTest.java
62
fail("Should throw
NullPointerException
");
63
} catch (
NullPointerException
e) {
111
fail("
NullPointerException
expected");
112
} catch (
NullPointerException
ee) {
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KSPrivateKeyEntryTest.java
60
* Assertion: throws
NullPointerException
when privateKey is null
67
fail("
NullPointerException
must be thrown when privateKey is null");
68
} catch (
NullPointerException
e) {
75
* Assertion: throws
NullPointerException
when chain is null
83
fail("
NullPointerException
must be thrown when chain is null");
84
} catch (
NullPointerException
e) {
/libcore/luni/src/test/java/tests/security/spec/
RSAMultiPrimePrivateCrtKeySpecTest.java
90
* Assertion:
NullPointerException
if modulus is null
105
} catch (
NullPointerException
e) {
121
* Assertion:
NullPointerException
if publicExponent is null
136
} catch (
NullPointerException
e) {
152
* Assertion:
NullPointerException
if privateExponent is null
167
} catch (
NullPointerException
e) {
183
* Assertion:
NullPointerException
if primeP is null
198
} catch (
NullPointerException
e) {
214
* Assertion:
NullPointerException
if primeQ is null
229
} catch (
NullPointerException
e)
[
all
...]
/packages/apps/Email/emailcommon/src/org/apache/commons/io/
FileCleaningTracker.java
69
* @throws
NullPointerException
if the file is null
83
* @throws
NullPointerException
if the file is null
87
throw new
NullPointerException
("The file must not be null");
99
* @throws
NullPointerException
if the path is null
113
* @throws
NullPointerException
if the path is null
117
throw new
NullPointerException
("The path must not be null");
FileUtils.java
297
throw new
NullPointerException
("Parameter 'fileFilter' is null");
552
* @throws
NullPointerException
if source or destination is null
574
* @throws
NullPointerException
if source or destination is <code>null</code>
582
throw new
NullPointerException
("Destination must not be null");
601
* @throws
NullPointerException
if source or destination is <code>null</code>
623
* @throws
NullPointerException
if source or destination is <code>null</code>
631
throw new
NullPointerException
("Source must not be null");
634
throw new
NullPointerException
("Destination must not be null");
704
* @throws
NullPointerException
if source or destination is <code>null</code>
711
throw new
NullPointerException
("Source must not be null");
[
all
...]
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SocketChannelTest.java
175
} catch (
NullPointerException
e) {
207
} catch (
NullPointerException
e) {
213
} catch (
NullPointerException
e) {
219
} catch (
NullPointerException
e) {
235
} catch (
NullPointerException
e) {
260
} catch (
NullPointerException
e) {
266
} catch (
NullPointerException
e) {
272
} catch (
NullPointerException
e) {
[
all
...]
/external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java
205
* @throws
NullPointerException
if strategy is null
209
throw new
NullPointerException
("strategy");
229
* <li>{@link
NullPointerException
} if the key is null or the
249
* @throws
NullPointerException
if strategy or computer is null
255
throw new
NullPointerException
("strategy");
258
throw new
NullPointerException
("computer");
444
* @throws
NullPointerException
if key is null
455
* @throws
NullPointerException
if entry is null
464
* @throws
NullPointerException
if entry is null
495
* @throws
NullPointerException
if the computer returned nul
[
all
...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumSetTest.java
76
fail("Should throw
NullPointerException
"); //$NON-NLS-1$
77
} catch (
NullPointerException
e) {
166
fail("Should throw
NullPointerException
"); //$NON-NLS-1$
167
} catch (
NullPointerException
e) {
223
fail("Should throw
NullPointerException
"); //$NON-NLS-1$
224
} catch (
NullPointerException
e) {
240
fail("Should throw
NullPointerException
"); //$NON-NLS-1$
241
} catch (
NullPointerException
e) {
288
fail("Should throw
NullPointerException
"); //$NON-NLS-1$
289
} catch (
NullPointerException
e)
[
all
...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory1Test.java
132
* throws
NullPointerException
when type is null
138
fail("
NullPointerException
or CertificateException must be thrown when type is null");
140
} catch (
NullPointerException
e) {
180
* throws
NullPointerException
when type is null
191
fail("
NullPointerException
or CertificateException must be thrown when type is null");
193
} catch (
NullPointerException
e) {
252
* throws
NullPointerException
when type is null
262
fail("
NullPointerException
or CertificateException must be thrown when type is null");
264
} catch (
NullPointerException
e) {
369
fail("generateCertificate must thrown CertificateException or
NullPointerEXception
when input stream is null")
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryImpl.java
130
throw new
NullPointerException
("Null parameters");
293
throw new
NullPointerException
(" unable to create the response");
350
throw new
NullPointerException
("Null params ");
437
throw new
NullPointerException
("null parameters");
470
throw new
NullPointerException
("null Parameters");
498
throw new
NullPointerException
("null parameters");
553
throw new
NullPointerException
("missing parameters");
605
throw new
NullPointerException
("missing parameters");
661
throw new
NullPointerException
("missing parameters");
[
all
...]
/libcore/luni/src/test/java/tests/api/java/util/
EnumSetTest.java
76
fail("Should throw
NullPointerException
");
77
} catch (
NullPointerException
e) {
166
fail("Should throw
NullPointerException
");
167
} catch (
NullPointerException
e) {
223
fail("Should throw
NullPointerException
");
224
} catch (
NullPointerException
e) {
240
fail("Should throw
NullPointerException
");
241
} catch (
NullPointerException
e) {
288
fail("Should throw
NullPointerException
");
289
} catch (
NullPointerException
e)
[
all
...]
/libcore/luni/src/test/java/tests/security/cert/
CertificateFactory1Test.java
122
* throws
NullPointerException
when type is null
128
fail("
NullPointerException
or CertificateException must be thrown when type is null");
130
} catch (
NullPointerException
e) {
170
* throws
NullPointerException
when type is null
180
fail("
NullPointerException
or CertificateException must be thrown when type is null");
182
} catch (
NullPointerException
e) {
241
* throws
NullPointerException
when type is null
251
fail("
NullPointerException
or CertificateException must be thrown when type is null");
253
} catch (
NullPointerException
e) {
356
fail("generateCertificate must thrown CertificateException or
NullPointerEXception
when input stream is null")
[
all
...]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
RenderScriptTest.java
44
fail("should throw
NullPointerException
.");
45
} catch (
NullPointerException
e) {
/cts/tests/tests/text/src/android/text/cts/
Spannable_FactoryTest.java
49
fail("should throw
NullPointerException
here");
50
} catch (
NullPointerException
e) {
/cts/tests/tests/text/src/android/text/style/cts/
ClickableSpanTest.java
60
fail("should throw
NullPointerException
when TextPaint is null.");
61
} catch (
NullPointerException
e) {
MaskFilterSpanTest.java
64
fail("should throw
NullPointerException
.");
65
} catch (
NullPointerException
e) {
RasterizerSpanTest.java
82
fail("should throw
NullPointerException
.");
83
} catch (
NullPointerException
e) {
TextAppearanceSpanTest.java
58
@ToBeFixed(bug = "1695243", explanation = "should add @throws
NullPointerException
clause" +
79
fail("should throw
NullPointerException
.");
80
} catch (
NullPointerException
e) {
86
fail("should throw
NullPointerException
.");
87
} catch (
NullPointerException
e) {
136
fail("should throw
NullPointerException
.");
137
} catch (
NullPointerException
e) {
241
fail("should throw
NullPointerException
.");
242
} catch (
NullPointerException
e) {
/cts/tools/dx-tests/src/dxc/junit/opcodes/monitorexit/
Test_monitorexit.java
62
* @title expected
NullPointerException
68
fail("expected
NullPointerException
");
69
} catch (
NullPointerException
npe) {
/cts/tools/vm-tests/src/dot/junit/opcodes/monitor_exit/
Test_monitor_exit.java
47
* @title expected
NullPointerException
53
fail("expected
NullPointerException
");
54
} catch (
NullPointerException
npe) {
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_exit/
Test_monitor_exit.java
47
* @title expected
NullPointerException
53
fail("expected
NullPointerException
");
54
} catch (
NullPointerException
npe) {
/dalvik/dexgen/src/com/android/dexgen/dex/code/
CstInsn.java
59
throw new
NullPointerException
("constant == null");
LocalSnapshot.java
44
throw new
NullPointerException
("locals == null");
TargetInsn.java
46
throw new
NullPointerException
("target == null");
/dalvik/dexgen/src/com/android/dexgen/dex/file/
StringIdItem.java
44
throw new
NullPointerException
("value == null");
Completed in 886 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>