HomeSort by relevance Sort by last modified time
    Searched refs:NullPointerException (Results 551 - 575 of 1783) sorted by null

<<21222324252627282930>>

  /libcore/luni/src/main/java/java/security/
AlgorithmParameters.java 89 * @throws NullPointerException
95 throw new NullPointerException("algorithm == null");
116 * @throws NullPointerException
144 * @throws NullPointerException
154 throw new NullPointerException("algorithm == null");
KeyPairGenerator.java 77 * @throws NullPointerException
83 throw new NullPointerException("algorithm == null");
109 * @throws NullPointerException
136 * @throws NullPointerException
146 throw new NullPointerException("algorithm == null");
  /libcore/luni/src/main/java/java/security/cert/
CertStore.java 95 * @throws NullPointerException if {@code type == null}
100 throw new NullPointerException("type == null");
135 * @throws NullPointerException
169 * @throws NullPointerException if {@code type == null}
178 throw new NullPointerException("type == null");
CertificateFactory.java 82 * @throws NullPointerException if {@code type == null}
87 throw new NullPointerException("type == null");
113 * @throws NullPointerException
144 * @throws NullPointerException if {@code type == null}
153 throw new NullPointerException("type == null");
  /libcore/luni/src/main/java/java/util/zip/
DeflaterOutputStream.java 119 throw new NullPointerException("os == null");
121 throw new NullPointerException("def == null");
InflaterInputStream.java 107 throw new NullPointerException("is == null");
109 throw new NullPointerException("inflater == null");
  /libcore/luni/src/main/java/javax/crypto/
KeyAgreement.java 96 * @throws NullPointerException
102 throw new NullPointerException("algorithm == null");
155 * @throws NullPointerException
164 throw new NullPointerException("algorithm == null");
KeyGenerator.java 95 * @throws NullPointerException
101 throw new NullPointerException("algorithm == null");
123 * @throws NullPointerException
152 * @throws NullPointerException
161 throw new NullPointerException("algorithm == null");
  /libcore/luni/src/main/java/javax/security/auth/
Subject.java 120 throw new NullPointerException("subjPrincipals == null");
122 throw new NullPointerException("pubCredentials == null");
124 throw new NullPointerException("privCredentials == null");
474 throw new NullPointerException("context == null");
561 throw new NullPointerException("o == null");
614 throw new NullPointerException("c == null");
631 throw new NullPointerException("c == null");
659 throw new NullPointerException("c == null");
  /libcore/luni/src/main/java/libcore/io/
StrictLineReader.java 66 * @throws NullPointerException if {@code in} is null.
77 * @throws NullPointerException if {@code in} is null.
90 * @throws NullPointerException if {@code in} or {@code charset} is null.
104 * @throws NullPointerException if {@code in} or {@code charset} is null.
110 throw new NullPointerException("in == null");
112 throw new NullPointerException("charset == null");
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 104 } catch (NullPointerException expected) {
109 } catch (NullPointerException expected) {
SystemTest.java 111 } catch (NullPointerException e) {
117 } catch (NullPointerException e) {
  /libcore/luni/src/test/java/libcore/java/text/
NormalizerTest.java 48 } catch (NullPointerException e) {
82 fail("Did not throw NullPointerException on null argument");
83 } catch (NullPointerException e) {
OldDecimalFormatSymbolsTest.java 46 } catch(NullPointerException e) {
71 fail("NullPointerException was not thrown.");
72 } catch(NullPointerException npe) {
  /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/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...]
  /packages/apps/Mms/src/com/android/mms/util/
BackgroundLoaderManager.java 105 * @throws NullPointerException if either argument is {@code null}
112 throw new NullPointerException("uri is null");
115 throw new NullPointerException("callback is null");
  /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/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...]

Completed in 662 milliseconds

<<21222324252627282930>>