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

1 2 3 4 5 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
NameValuePair.java 40 throw new NullPointerException("name == null");
44 throw new NullPointerException("value == null");
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstMemberRef.java 37 throw new NullPointerException("definingClass == null");
41 throw new NullPointerException("nat == null");
CstNat.java 48 throw new NullPointerException("name == null");
52 throw new NullPointerException("descriptor == null");
  /external/nist-sip/java/gov/nist/javax/sip/header/
Event.java 71 throw new NullPointerException(" the eventType is null");
93 throw new NullPointerException(" the eventId parameter is null");
SubscriptionState.java 133 throw new NullPointerException(
157 throw new NullPointerException(
  /external/okhttp/src/main/java/libcore/util/
BasicLruCache.java 46 throw new NullPointerException();
72 throw new NullPointerException();
  /frameworks/base/core/java/android/os/
DropBoxManager.java 99 if (tag == null) throw new NullPointerException("tag == null");
110 if (tag == null) throw new NullPointerException("tag == null");
111 if (text == null) throw new NullPointerException("text == null");
125 if (tag == null) throw new NullPointerException("tag == null");
142 if (tag == null) throw new NullPointerException("tag == null");
159 if (tag == null) throw new NullPointerException("tag == null");
283 if (data == null) throw new NullPointerException("data == null");
297 if (file == null) throw new NullPointerException("file == null");
  /libcore/luni/src/main/java/java/io/
StringBufferInputStream.java 52 * @throws NullPointerException
57 throw new NullPointerException("str == null");
98 * @throws NullPointerException
104 throw new NullPointerException("buffer == null");
  /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();
  /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/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLEngine.java 34 throw new NullPointerException("engine == null");
61 throw new NullPointerException("id == 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) {
  /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) {

Completed in 1305 milliseconds

1 2 3 4 5 6 7 8 91011>>