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

<<11121314151617181920>>

  /cts/tests/tests/content/src/android/content/pm/cts/
ComponentInfoTest.java 56 fail("should throw NullPointerException.");
57 } catch (NullPointerException e) {
63 fail("should throw NullPointerException.");
64 } catch (NullPointerException e) {
93 fail("ComponentInfo#loadIcon() throw NullPointerException");
94 } catch (NullPointerException e) {
122 fail("ComponentInfo#dumpBack() throw NullPointerException here.");
123 } catch (NullPointerException e) {
177 fail("ComponentInfo#dumpFront() throw NullPointerException here.");
178 } catch (NullPointerException e)
    [all...]
ActivityInfoTest.java 43 fail("should throw NullPointerException.");
44 } catch (NullPointerException e) {
70 fail("should throw NullPointerException");
71 } catch (NullPointerException e) {
119 fail("should throw NullPointerException.");
120 } catch (NullPointerException e) {
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
HandlerTest.java 183 fail("Should throw NullPointerException!");
184 } catch (NullPointerException e) {
191 fail("Should throw NullPointerException!");
192 } catch (NullPointerException e) {
237 fail("Should throw NullPointerException!");
238 } catch (NullPointerException e) {
245 fail("Should throw NullPointerException!");
246 } catch (NullPointerException e) {
268 fail("Should throw NullPointerException!");
269 } catch (NullPointerException e)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 57 fail("NullPointerException expected");
58 } catch (NullPointerException e) {
66 fail("NullPointerException expected");
67 } catch (NullPointerException e) {
114 fail("NullPointerException expected");
115 } catch (NullPointerException e) {
159 fail("NullPointerException expected");
160 } catch (NullPointerException e) {
200 fail("NullPointerException expected");
201 } catch (NullPointerException e)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
LocaleTest.java 46 fail("NullPointerException expected");
47 } catch (NullPointerException e) {
63 fail("NullPointerException expected");
64 } catch (NullPointerException e) {
70 fail("NullPointerException expected");
71 } catch (NullPointerException e) {
88 fail("expected NullPointerException with 1st parameter == null");
89 } catch(NullPointerException e) {
94 fail("expected NullPointerException with 2nd parameter == null");
95 } catch(NullPointerException e)
    [all...]
ResourceBundleTest.java 75 fail("NullPointerException expected");
76 } catch (NullPointerException ee) {
81 fail("NullPointerException expected");
82 } catch (NullPointerException ee) {
135 fail("NullPointerException expected");
136 } catch (NullPointerException ee) {
142 fail("NullPointerException expected");
143 } catch (NullPointerException ee) {
149 fail("NullPointerException expected");
150 } catch (NullPointerException ee)
    [all...]
  /libcore/luni/src/test/java/tests/java/security/
SecureRandomTest.java 155 } catch (NullPointerException e) {
168 } catch (NullPointerException e) {
181 } catch (NullPointerException e) {
187 fail("expected NullPointerException");
194 } catch (NullPointerException e) {
216 } catch (NullPointerException e) {
223 fail("expected NullPointerException");
228 } catch (NullPointerException e) {
239 } catch (NullPointerException e) {
  /cts/tests/tests/content/src/android/content/cts/
ContentUrisTest.java 63 fail("There should be a NullPointerException thrown out.");
64 } catch (NullPointerException e) {
84 fail("There should be a NullPointerException thrown out.");
85 } catch (NullPointerException e) {
108 fail("There should be a NullPointerException thrown out.");
109 } catch (NullPointerException e) {
  /cts/tests/tests/widget/src/android/widget/cts/
MultiAutoCompleteTextView_CommaTokenizerTest.java 69 fail("did not throw NullPointerException when text is null");
70 } catch (NullPointerException e) {
98 fail("did not throw NullPointerException when text is null");
99 } catch (NullPointerException e) {
136 fail("did not throw NullPointerException when text is null");
137 } catch (NullPointerException e) {
TwoLineListItemTest.java 55 fail("The constructor should throw NullPointerException when param Context is null.");
56 } catch (NullPointerException e) {
62 fail("The constructor should throw NullPointerException when param Context is null.");
63 } catch (NullPointerException e) {
70 fail("The constructor should throw NullPointerException when param Context is null.");
71 } catch (NullPointerException e) {
ZoomButtonTest.java 66 fail("should throw NullPointerException.");
67 } catch (NullPointerException e) {
72 fail("should throw NullPointerException.");
73 } catch (NullPointerException e) {
78 fail("should throw NullPointerException.");
79 } catch (NullPointerException e) {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringIdsSection.java 61 throw new NullPointerException("cst == null");
140 throw new NullPointerException("string == null");
175 throw new NullPointerException("string == null");
UniformListItem.java 59 throw new NullPointerException("itemType == null");
81 } catch (NullPointerException ex) {
83 throw new NullPointerException("items == null");
  /dalvik/dx/src/com/android/dx/dex/file/
StringIdsSection.java 59 throw new NullPointerException("cst == null");
122 throw new NullPointerException("string == null");
157 throw new NullPointerException("string == null");
UniformListItem.java 57 throw new NullPointerException("itemType == null");
79 } catch (NullPointerException ex) {
81 throw new NullPointerException("items == null");
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
OAEPParameterSpecTest.java 41 * mgfSpec, PSource pSrc) method testing. Tests that NullPointerException
54 fail("NullPointerException should be thrown in the case of "
56 } catch (NullPointerException e) {
61 fail("NullPointerException should be thrown in the case of "
63 } catch (NullPointerException e) {
68 fail("NullPointerException should be thrown in the case of "
70 } catch (NullPointerException e) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
CookiePolicyTest.java 39 fail("Should throw NullPointerException");
40 } catch (NullPointerException e) {
46 fail("Should throw NullPointerException");
47 } catch (NullPointerException e) {
53 fail("Should throw NullPointerException");
54 } catch (NullPointerException e) {
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 144 fail("should throw NullPointerException");
145 } catch (NullPointerException e) {
239 fail("should throw NullPointerException");
240 } catch (NullPointerException e) {
258 fail("should throw NullPointerException");
259 } catch (NullPointerException e) {
267 fail("should throw NullPointerException");
268 } catch (NullPointerException e) {
281 fail("should throw NullPointerException");
282 } catch (NullPointerException e)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECPrivateKeySpec_ImplTest.java 68 * Assertion: throws <code>NullPointerException</code> if
71 * Expected: must throw <code>NullPointerException</code>
86 } catch (NullPointerException ok) {
94 } catch (NullPointerException ok) {
102 } catch (NullPointerException ok) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
StringIdsSection.java 60 throw new NullPointerException("cst == null");
123 throw new NullPointerException("string == null");
158 throw new NullPointerException("string == null");
UniformListItem.java 59 throw new NullPointerException("itemType == null");
81 } catch (NullPointerException ex) {
83 throw new NullPointerException("items == null");
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowComponentName.java 24 if (pkg == null) throw new NullPointerException("package name is null");
25 if (cls == null) throw new NullPointerException("class name is null");
31 if (cls == null) throw new NullPointerException("class name is null");
  /libcore/luni/src/main/java/java/security/spec/
EllipticCurve.java 62 throw new NullPointerException("field == null");
66 throw new NullPointerException("a == null");
70 throw new NullPointerException("b == null");
  /libcore/luni/src/main/java/javax/net/ssl/
SSLContext.java 70 * @throws NullPointerException on a null argument
75 throw new NullPointerException("sslContext == null");
90 * @throws NullPointerException
96 throw new NullPointerException("protocol == null");
116 * @throws NullPointerException
147 * @throws NullPointerException
157 throw new NullPointerException("protocol == null");
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
OAEPParameterSpecTest.java 41 * mgfSpec, PSource pSrc) method testing. Tests that NullPointerException
54 fail("NullPointerException should be thrown in the case of "
56 } catch (NullPointerException e) {
61 fail("NullPointerException should be thrown in the case of "
63 } catch (NullPointerException e) {
68 fail("NullPointerException should be thrown in the case of "
70 } catch (NullPointerException e) {

Completed in 841 milliseconds

<<11121314151617181920>>