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

<<21222324252627282930>>

  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 91 throw new NullPointerException("out == null");
103 throw new NullPointerException("spacer == null");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SequenceInputStreamTest.java 52 fail("should throw NullPointerException");
53 } catch (NullPointerException e) {
57 //will not throw NullPointerException if the first InputStream is not null
165 fail("Expected NullPointerException exception");
166 } catch (NullPointerException e) {
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KSPrivateKeyEntryTest.java 66 * Assertion: throws NullPointerException when privateKey is null
73 fail("NullPointerException must be thrown when privateKey is null");
74 } catch (NullPointerException e) {
81 * Assertion: throws NullPointerException when chain is null
89 fail("NullPointerException must be thrown when chain is null");
90 } catch (NullPointerException e) {
MessageDigestSpiTest.java 57 fail("No expected NullPointerException");
58 } catch (NullPointerException e) {
74 fail("should throw NullPointerException");
75 } catch (NullPointerException e) {
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
PKIXBuilderParametersTest.java 117 * Assertion: <code>NullPointerException</code> -
125 } catch (NullPointerException e) {
171 * Assertion: <code>NullPointerException</code> -
179 } catch (NullPointerException e) {
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
RSAMultiPrimePrivateCrtKeySpecTest.java 97 * Assertion: NullPointerException if modulus is null
112 } catch (NullPointerException e) {
128 * Assertion: NullPointerException if publicExponent is null
143 } catch (NullPointerException e) {
159 * Assertion: NullPointerException if privateExponent is null
174 } catch (NullPointerException e) {
190 * Assertion: NullPointerException if primeP is null
205 } catch (NullPointerException e) {
221 * Assertion: NullPointerException if primeQ is null
236 } catch (NullPointerException e)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl1Test.java 136 * throws NullPointerException when type is null
145 } catch (NullPointerException e) {
194 * throws NullPointerException when type is null
203 } catch (NullPointerException e) {
362 * methods Assertions: setEntry(..) throws NullPointerException when alias
366 * throw NullPointerException when alias is null;
386 fail("NullPointerException should be thrown when alias is null");
387 } catch (NullPointerException e) {
391 fail("NullPointerException should be thrown when entry is null");
392 } catch (NullPointerException e)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECFieldF2m_ImplTest.java 44 * <code>NPE</code> reference object of class NullPointerException.
45 * NullPointerException must be thrown by <code>ECFieldF2m</code>
48 static final NullPointerException NPE = new NullPointerException();
192 * Assertion: NullPointerException if rp is null.
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetItem.java 73 } catch (NullPointerException ex) {
75 throw new NullPointerException("list == null");
ParameterAnnotationStruct.java 51 throw new NullPointerException("method == null");
55 throw new NullPointerException("annotationsList == null");
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
Annotations.java 172 throw new NullPointerException("annotation == null");
196 throw new NullPointerException("toAdd == null");
  /external/dexmaker/src/dx/java/com/android/dx/util/
TwoColumnOutput.java 91 throw new NullPointerException("out == null");
103 throw new NullPointerException("spacer == null");
  /external/guava/guava/src/com/google/common/base/
CaseFormat.java 69 throw new NullPointerException();
72 throw new NullPointerException();
  /external/guava/guava/src/com/google/common/collect/
ForwardingSortedMap.java 124 } catch (NullPointerException e) {
154 } catch (NullPointerException e) {
ForwardingSortedSet.java 122 } catch (NullPointerException e) {
149 } catch (NullPointerException e) {
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableMultimapTest.java 50 } catch (NullPointerException expected) {
55 } catch (NullPointerException expected) {
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationInfo.java 209 throw new NullPointerException("null name");
224 throw new NullPointerException("null value");
ContentType.java 187 throw new NullPointerException("null arg");
199 throw new NullPointerException("null arg");
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PChargingVector.java 118 throw new NullPointerException(
151 throw new NullPointerException(
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TwoColumnOutput.java 95 throw new NullPointerException("out == null");
107 throw new NullPointerException("spacer == null");
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarNotification.java 60 if (pkg == null) throw new NullPointerException();
61 if (notification == null) throw new NullPointerException();
  /frameworks/base/services/java/com/android/server/
EntropyMixer.java 81 if (randomDevice == null) { throw new NullPointerException("randomDevice"); }
82 if (entropyFile == null) { throw new NullPointerException("entropyFile"); }
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduBody.java 78 * @throws NullPointerException when part is null
82 throw new NullPointerException();
94 * @throws NullPointerException when part is null
98 throw new NullPointerException();
  /libcore/dom/src/test/java/org/w3c/domts/
DOM4JTestDocumentBuilderFactory.java 107 throw new NullPointerException("url");
110 throw new NullPointerException("saxReader");
  /libcore/luni/src/main/java/java/lang/
Enum.java 177 * @throws NullPointerException
185 throw new NullPointerException("enumType == null");
187 throw new NullPointerException("name == null");

Completed in 1158 milliseconds

<<21222324252627282930>>