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

<<11121314151617181920>>

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTest.java 48 fail("NullPointerException has not been thrown (type)");
49 } catch (NullPointerException expected) {
53 fail("NullPointerException has not been thrown (alg)");
54 } catch (NullPointerException expected) {
58 fail("NullPointerException has not been thrown (format)");
59 } catch (NullPointerException expected) {
63 fail("NullPointerException has not been thrown (encoding)");
64 } catch (NullPointerException expected) {
  /libcore/luni/src/test/java/tests/api/java/lang/ref/
WeakReferenceTest.java 51 } catch (NullPointerException e) {
54 assertTrue("Should not throw NullPointerException", !exception);
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
CertPathTrustManagerParametersTest.java 36 * Case 2: Check NullPointerException.
50 // case 2: Check NullPointerException.
54 } catch (NullPointerException npe) {
  /libcore/luni/src/test/java/tests/security/spec/
MGF1ParameterSpecTest.java 61 * Assertion: <code>NullPointerException</code> if parameter is <code>null</code>
66 fail("NullPointerException has not been thrown");
67 } catch (NullPointerException ok) {
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
TempStorage.java 68 throw new NullPointerException("inst");
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ViewLayoutUtils.java 37 throw new NullPointerException("placer is null");
  /cts/tests/tests/text/src/android/text/util/cts/
LinkifyTest.java 92 fail("Should throw NullPointerException!");
93 } catch (NullPointerException e) {
119 fail("Should throw NullPointerException!");
120 } catch (NullPointerException e) {
148 fail("Should throw NullPointerException!");
149 } catch (NullPointerException e) {
155 fail("Should throw NullPointerException!");
156 } catch (NullPointerException e) {
184 fail("Should throw NullPointerException!");
185 } catch (NullPointerException e)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java 120 } catch (NullPointerException e) {
133 } catch (NullPointerException e) {
146 } catch (NullPointerException e) {
159 } catch (NullPointerException e) {
172 } catch (NullPointerException e) {
185 } catch (NullPointerException e) {
198 } catch (NullPointerException e) {
211 } catch (NullPointerException e) {
224 } catch (NullPointerException e) {
237 } catch (NullPointerException e)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SinkChannelTest.java 154 fail("should throw NullPointerException");
155 } catch (NullPointerException e) {
219 fail("should throw NullPointerException");
220 } catch (NullPointerException e) {
229 fail("should throw NullPointerException");
230 } catch (NullPointerException e) {
261 fail("should throw NullPointerException");
262 } catch (NullPointerException e) {
310 } catch (NullPointerException expected) {
324 fail("should throw NullPointerException");
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldRuntimeTest.java 121 fail("NullPointerException should be thrown.");
124 } catch(NullPointerException npe) {
159 fail("NullPointerException should be thrown.");
162 } catch(NullPointerException npe) {
168 fail("NullPointerException should be thrown.");
171 } catch(NullPointerException npe) {
214 fail("NullPointerException should be thrown.");
217 } catch(NullPointerException npe) {
254 fail("NullPointerException should be thrown.");
257 } catch(NullPointerException npe)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeMapTest.java 127 fail("NullPointerException expected");
128 } catch (NullPointerException e) {
149 fail("NullPointerException expected");
150 } catch (NullPointerException e) {
170 fail("NullPointerException expected");
171 } catch (NullPointerException e) {
204 fail("NullPointerException expected");
205 } catch (NullPointerException e) {
235 fail("NullPointerException expected");
236 } catch (NullPointerException e)
    [all...]
  /art/test/084-class-init/src/
Main.java 28 } catch (NullPointerException ex) {
34 throw new NullPointerException();
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerMemoryInfoTest.java 55 fail("writeToParcel should throw out NullPointerException when Parcel is null");
56 } catch (NullPointerException e) {
81 fail("readFromParcel should throw out NullPointerException when Parcel is null");
82 } catch (NullPointerException e) {
  /cts/tests/tests/text/src/android/text/style/cts/
AbsoluteSizeSpanTest.java 63 fail("should throw NullPointerException when TextPaint is null.");
64 } catch (NullPointerException e) {
84 fail("should throw NullPointerException when TextPaint is null.");
85 } catch (NullPointerException e) {
TypefaceSpanTest.java 62 fail("should throw NullPointerException.");
63 } catch (NullPointerException e) {
82 fail("should throw NullPointerException.");
83 } catch (NullPointerException e) {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvCode.java 84 throw new NullPointerException("unprocessedInsns == null");
88 throw new NullPointerException("unprocessedCatches == null");
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
FieldAnnotationStruct.java 45 throw new NullPointerException("field == null");
49 throw new NullPointerException("annotations == null");
MethodAnnotationStruct.java 45 throw new NullPointerException("method == null");
49 throw new NullPointerException("annotations == null");
ProtoIdsSection.java 92 throw new NullPointerException("prototype == null");
116 throw new NullPointerException("prototype == null");
  /dalvik/dexgen/src/com/android/dexgen/util/
IndentingWriter.java 60 throw new NullPointerException("out == null");
68 throw new NullPointerException("prefix == null");
  /dalvik/dx/src/com/android/dx/dex/code/
DalvCode.java 83 throw new NullPointerException("unprocessedInsns == null");
87 throw new NullPointerException("unprocessedCatches == null");
  /dalvik/dx/src/com/android/dx/dex/file/
FieldAnnotationStruct.java 45 throw new NullPointerException("field == null");
49 throw new NullPointerException("annotations == null");
MethodAnnotationStruct.java 45 throw new NullPointerException("method == null");
49 throw new NullPointerException("annotations == null");
ProtoIdsSection.java 91 throw new NullPointerException("prototype == null");
115 throw new NullPointerException("prototype == null");
  /dalvik/dx/src/com/android/dx/util/
IndentingWriter.java 60 throw new NullPointerException("out == null");
68 throw new NullPointerException("prefix == null");

Completed in 961 milliseconds

<<11121314151617181920>>