HomeSort by relevance Sort by last modified time
    Searched refs:NullPointerException (Results 251 - 275 of 1923) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/security/
Timestamp.java 47 * @throws NullPointerException
53 throw new NullPointerException("timestamp == null");
56 throw new NullPointerException("signerCertPath == null");
  /libcore/luni/src/main/java/java/util/
ListResourceBundle.java 111 throw new NullPointerException("key == null");
122 throw new NullPointerException("null entry");
  /libcore/luni/src/main/java/java/util/zip/
InflaterOutputStream.java 74 throw new NullPointerException("out == null");
76 throw new NullPointerException("inf == null");
137 * @throws NullPointerException if {@code b == null}.
  /libcore/luni/src/main/java/javax/crypto/spec/
DESedeKeySpec.java 43 * @throws NullPointerException
48 throw new NullPointerException("key == null");
69 * @throws NullPointerException
74 throw new NullPointerException("key == null");
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactory.java 130 * @throws NullPointerException If <code>uri</code> is <code>null</code>.
136 throw new NullPointerException("uri == null");
162 * @throws NullPointerException If <code>uri</code> is <code>null</code>.
168 throw new NullPointerException("uri == null");
198 * @throws NullPointerException If <code>objectModel</code> is <code>null</code>.
226 * @throws NullPointerException if <code>name</code> is <code>null</code>.
248 * @throws NullPointerException if <code>name</code> is <code>null</code>.
259 * <p>A <code>NullPointerException</code> is thrown if <code>resolver</code> is <code>null</code>.</p>
263 * @throws NullPointerException If <code>resolver</code> is <code>null</code>.
273 * <p>A <code>NullPointerException</code> is thrown if <code>resolver</code> is <code>null</code>.</p
    [all...]
  /libcore/luni/src/main/java/libcore/net/url/
JarHandler.java 68 throw new NullPointerException("Cannot find \"!/\"");
84 throw new NullPointerException(e.toString());
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderFactoryImpl.java 45 throw new NullPointerException("name == null");
93 throw new NullPointerException("name == null");
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramPacketTest.java 79 fail("NullPointerException was not thrown.");
80 } catch(NullPointerException expected) {
88 fail("NullPointerException was not thrown.");
89 } catch(NullPointerException expected) {
  /libcore/luni/src/test/java/libcore/java/text/
OldFormatTest.java 35 throw new NullPointerException("obj is null");
74 fail("NullPointerException was not thrown.");
75 } catch(NullPointerException npe) {
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PSourceTest.java 37 * PSpecified(byte[] p) method testing. Tests that NullPointerException
45 fail("NullPointerException should be thrown in the case of "
47 } catch (NullPointerException e) {
89 fail("NullPointerException should be thrown in the case of "
91 } catch (NullPointerException e) {
PBEKeySpecTest.java 47 } catch (NullPointerException e) {
48 fail("Unexpected NullPointerException was thrown.");
78 } catch (NullPointerException e) {
79 fail("Unexpected NullPointerException was thrown.");
84 fail("A NullPointerException should be was thrown "
88 } catch (NullPointerException e) {
155 } catch (NullPointerException e) {
156 fail("Unexpected NullPointerException was thrown.");
161 fail("A NullPointerException should be was thrown "
165 } catch (NullPointerException e)
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
ParserFactoryTest.java 38 fail("expected NullPointerException was not thrown");
39 } catch (NullPointerException e) {
99 fail("expected NullPointerException was not thrown");
100 } catch (NullPointerException e) {
  /libcore/luni/src/test/java/tests/security/cert/
X509CRLSelectorTest.java 45 fail("NullPointerException expected");
46 } catch (NullPointerException e) {
107 fail("NullPointerException expected");
108 } catch (NullPointerException e) {
  /libcore/luni/src/test/java/tests/security/spec/
ECPrivateKeySpecTest.java 60 * case 2: catch NullPointerException - if s is null.
61 * case 3: catch NullPointerException - if params is null.
69 // case 2: catch NullPointerException - if s is null.
72 fail("NullPointerException has not been thrown");
73 } catch (NullPointerException e) {
77 // case 3: catch NullPointerException - if params is null.
80 fail("NullPointerException has not been thrown");
81 } catch (NullPointerException e) {
ECPublicKeySpecTest.java 58 * case 2: catch NullPointerException - if w is null.
59 * case 3: catch NullPointerException - if params is null.
67 // case 2: catch NullPointerException - if w is null.
70 fail("NullPointerException has not been thrown");
71 } catch (NullPointerException e) {
75 // case 3: catch NullPointerException - if params is null.
78 fail("NullPointerException has not been thrown");
79 } catch (NullPointerException e) {
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractImmutableSetTest.java 124 } catch(NullPointerException expected) {
133 } catch (NullPointerException expected) {
170 } catch (NullPointerException expected) {
206 } catch (NullPointerException expected) {
366 fail("expected NullPointerException"); // COV_NF_LINE
367 } catch (NullPointerException expected) {
373 fail("expected NullPointerException"); // COV_NF_LINE
374 } catch (NullPointerException expected) {
380 fail("expected NullPointerException"); // COV_NF_LINE
381 } catch (NullPointerException expected)
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ComponentNameTest.java 36 } catch (NullPointerException e) {
47 } catch (NullPointerException e) {
55 } catch (NullPointerException e) {
66 } catch (NullPointerException e) {
74 } catch (NullPointerException e) {
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PBEKeySpecTest.java 47 } catch (NullPointerException e) {
48 fail("Unexpected NullPointerException was thrown.");
78 } catch (NullPointerException e) {
79 fail("Unexpected NullPointerException was thrown.");
84 fail("A NullPointerException should be was thrown "
88 } catch (NullPointerException e) {
155 } catch (NullPointerException e) {
156 fail("Unexpected NullPointerException was thrown.");
161 fail("A NullPointerException should be was thrown "
165 } catch (NullPointerException e)
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
EncodedStringValue.java 50 * @throws NullPointerException if Text-string value is null.
55 throw new NullPointerException("EncodedStringValue: Text-string is null.");
67 * @throws NullPointerException if Text-string value is null.
117 * @throws NullPointerException if Text-string value is null.
121 throw new NullPointerException("EncodedStringValue: Text-string is null.");
159 * @throws NullPointerException if the text String is null
164 throw new NullPointerException("Text-string is null.");
177 throw new NullPointerException(
219 } catch (NullPointerException _) {
  /libcore/luni/src/main/java/java/io/
ObjectStreamField.java 57 * @throws NullPointerException
62 throw new NullPointerException("name == null");
64 throw new NullPointerException("cl == null");
81 * @throws NullPointerException
87 throw new NullPointerException("name == null");
89 throw new NullPointerException("cl == null");
107 throw new NullPointerException("name == null");
  /libcore/luni/src/main/java/javax/crypto/
CipherSpi.java 334 throw new NullPointerException("input == null");
337 throw new NullPointerException("output == null");
412 throw new NullPointerException("input == null");
518 throw new NullPointerException("input == null");
521 throw new NullPointerException("output == null");
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathImpl.java 93 throw new NullPointerException( fmsg );
117 throw new NullPointerException( fmsg );
141 throw new NullPointerException( fmsg );
244 * <code>NullPointerException</code> is thrown.</p>
254 * @throws NullPointerException If <code>expression</code> or <code>returnType</code> is <code>null</code>.
262 throw new NullPointerException ( fmsg );
268 throw new NullPointerException ( fmsg );
283 } catch ( java.lang.NullPointerException npe ) {
285 // NullPointerException at this stage for some other reason
358 * If <code>expression</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringTest.java 73 fail("NullPointerException is not thrown.");
74 } catch(NullPointerException npe) {
97 } catch (NullPointerException expected) {
104 } catch (NullPointerException expected) {
119 } catch (NullPointerException expected) {
126 } catch (NullPointerException expected) {
271 fail("NullPointerException is not thrown.");
272 } catch(NullPointerException npe) {
278 fail("NullPointerException is not thrown.");
279 } catch(NullPointerException npe)
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
GeneratedMessageTest.java 105 } catch (NullPointerException e) {
111 } catch (NullPointerException e) {
117 } catch (NullPointerException e) {
124 } catch (NullPointerException e) {
130 } catch (NullPointerException e) {
136 } catch (NullPointerException e) {
142 } catch (NullPointerException e) {
148 } catch (NullPointerException e) {
155 } catch (NullPointerException e) {
161 } catch (NullPointerException e)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SourceChannelTest.java 80 fail("should throw NullPointerException");
81 } catch (NullPointerException e) {
128 fail("should throw NullPointerException");
129 } catch (NullPointerException e) {
136 fail("should throw NullPointerException");
137 } catch (NullPointerException e) {
208 fail("should throw NullPointerException");
209 } catch (NullPointerException e) {
218 fail("should throw NullPointerException");
219 } catch (NullPointerException e)
    [all...]

Completed in 1007 milliseconds

<<11121314151617181920>>