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

<<41424344454647484950>>

  /libcore/luni/src/main/java/java/lang/
Character.java 535 throw new NullPointerException("string == null");
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
ArraysTest.java 92 } catch (NullPointerException e) {
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
ArrowKeyMovementMethodTest.java 163 fail("The method did not throw NullPointerException when param textView is null.");
164 } catch (NullPointerException e) {
170 fail("The method did not throw NullPointerException when param spannable is null.");
171 } catch (NullPointerException e) {
483 fail("The method did not throw NullPointerException when layout of the view is null.");
484 } catch (NullPointerException e) {
583 fail("The method did not throw NullPointerException when param textView is null.");
584 } catch (NullPointerException e) {
591 fail("The method did not throw NullPointerException when param spannable is null.");
592 } catch (NullPointerException e)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 407 fail("Should throw NullPointerException");
408 } catch (NullPointerException e) {
448 fail("Should throw NullPointerException");
449 } catch (NullPointerException e) {
480 fail("Should throw NullPointerException");
481 } catch (NullPointerException e) {
486 fail("Should throw NullPointerException");
487 } catch (NullPointerException e) {
543 fail("Should throw NullPointerException");
544 } catch (NullPointerException e)
    [all...]
AdapterViewTest.java 79 fail("Should throw NullPointerException");
80 } catch (NullPointerException e) {
310 fail("Should throw NullPointerException");
311 } catch (NullPointerException e) {
318 fail("Should throw NullPointerException");
319 } catch (NullPointerException e) {
ArrayAdapterTest.java 71 fail("should throw NullPointerException");
72 } catch (NullPointerException e) {
360 fail("should throw NullPointerException");
361 } catch (NullPointerException e) {
367 fail("should throw NullPointerException");
368 } catch (NullPointerException e) {
CompoundButtonTest.java 62 fail("Should throw NullPointerException.");
63 } catch (NullPointerException e) {
69 fail("Should throw NullPointerException.");
70 } catch (NullPointerException e) {
76 fail("Should throw NullPointerException.");
77 } catch (NullPointerException e) {
GalleryTest.java 90 fail("should throw NullPointerException.");
91 } catch (NullPointerException e) {
97 fail("should throw NullPointerException.");
98 } catch (NullPointerException e) {
104 fail("should throw NullPointerException.");
105 } catch (NullPointerException e) {
ToastTest.java 61 fail("did not throw NullPointerException when context is null.");
62 } catch (NullPointerException e) {
347 fail("did not throw NullPointerException when context is null.");
348 } catch (NullPointerException e) {
370 fail("did not throw NullPointerException when context is null.");
371 } catch (NullPointerException e) {
  /libcore/luni/src/test/java/libcore/java/text/
OldNumberFormatTest.java 93 fail("NullPointerException was thrown.");
94 } catch(NullPointerException npe) {
100 fail("NullPointerException was thrown.");
101 } catch(NullPointerException npe) {
151 fail("NullPointerException expected");
152 } catch (NullPointerException e) {
334 fail("java.lang.NullPointerException is not thrown");
335 } catch (java.lang.NullPointerException expected) {
374 fail("java.lang.NullPointerException is not thrown");
375 } catch (java.lang.NullPointerException expected)
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java 260 fail("did not throw NullPointerException when Uri is null.");
261 } catch (NullPointerException e) {
347 fail("did not throw NullPointerException when uri is null.");
348 } catch (NullPointerException e) {
713 fail("did not throw NullPointerException when uri is null.");
714 } catch (NullPointerException e) {
757 fail("did not throw NullPointerException when uri is null.");
758 } catch (NullPointerException e) {
    [all...]
ContentValuesTest.java 51 fail("There should be a NullPointerException thrown out.");
52 } catch (NullPointerException e) {
475 fail("There should be a NullPointerException thrown out.");
476 } catch (NullPointerException e) {
503 fail("There should be a NullPointerException thrown out.");
504 } catch (NullPointerException e) {
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ClipDrawableTest.java 64 fail("should throw NullPointerException.");
65 } catch (NullPointerException e) {
153 fail("should throw NullPointerException.");
154 } catch (NullPointerException e) {
210 fail("should throw NullPointerException.");
211 } catch (NullPointerException e) {
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 53 fail("should throw NullPointerException");
54 } catch (NullPointerException e) {
101 fail("should throw NullPointerException");
102 } catch (NullPointerException e) {
168 fail("should throw NullPointerException.");
169 } catch (NullPointerException e){
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoDecoder.java 97 throw new NullPointerException("encoded == null");
334 } catch (NullPointerException ex) {
360 } catch (NullPointerException ex) {
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoDecoder.java 98 throw new NullPointerException("encoded == null");
328 } catch (NullPointerException ex) {
354 } catch (NullPointerException ex) {
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
KeyAgreementTest.java 114 * throws NullPointerException when algorithm is null throws
120 fail("NullPointerException or NoSuchAlgorithmException should be thrown if algorithm is null");
121 } catch (NullPointerException e) {
152 * method Assertions: throws NullPointerException when algorithm is null
164 fail("NullPointerException or NoSuchAlgorithmException should be thrown if algorithm is null");
165 } catch (NullPointerException e) {
238 * method Assertions: throws NullPointerException when algorithm is null
249 fail("NullPointerException or NoSuchAlgorithmException should be thrown if algorithm is null");
250 } catch (NullPointerException e) {
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogRecordTest.java 50 fail("should throw NullPointerException");
51 } catch (NullPointerException e) {
55 fail("should throw NullPointerException");
56 } catch (NullPointerException e) {
100 fail("should throw NullPointerException");
101 } catch (NullPointerException e) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java 124 } catch (NullPointerException e) {
153 } catch (NullPointerException e) {
184 } catch (NullPointerException e) {
226 } catch (NullPointerException e) {
255 } catch (NullPointerException e) {
286 } catch (NullPointerException e) {
341 } catch (NullPointerException e) {
386 } catch (NullPointerException e) {
436 } catch (NullPointerException e) {
512 } catch (NullPointerException e)
    [all...]
StringBuffer2Test.java 57 } catch (NullPointerException e) {
60 assertTrue("Should throw NullPointerException", pass);
337 } catch (NullPointerException e) {
356 } catch (NullPointerException expected) {
StringBuilderTest.java 73 } catch (NullPointerException e) {
89 } catch (NullPointerException e) {
130 } catch (NullPointerException e) {
161 } catch (NullPointerException e) {
671 } catch (NullPointerException e) {
725 } catch (NullPointerException e) {
754 } catch (NullPointerException e) {
891 } catch (NullPointerException e) {
957 } catch (NullPointerException e) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoDecoder.java 98 throw new NullPointerException("encoded == null");
328 } catch (NullPointerException ex) {
354 } catch (NullPointerException ex) {
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 127 throws SipException, NullPointerException {
172 throw new NullPointerException("A null argument was passed to handle challenge.");
463 throw new NullPointerException("Null callId argument ");
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantReadWriteLock.java 686 * @throws NullPointerException if the lock is null
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 90 fail("NullPointerException must be thrown");
91 } catch (NullPointerException e) {}
356 fail("NullPointerException expected");
357 } catch (NullPointerException e) {
387 fail("NullPointerException expected");
388 } catch (NullPointerException e) {

Completed in 1461 milliseconds

<<41424344454647484950>>