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

<<21222324252627282930>>

  /libcore/luni/src/main/java/java/net/
DatagramSocket.java 247 throw new NullPointerException("pack == null");
281 throw new NullPointerException("Destination address is null");
298 throw new NullPointerException("netInterface == null");
377 throw new NullPointerException("socketImpl == null");
  /libcore/luni/src/main/java/java/security/
CodeSigner.java 45 * @throws NullPointerException
50 throw new NullPointerException("signerCertPath == null");
  /libcore/luni/src/main/java/java/security/cert/
PolicyQualifierInfo.java 50 throw new NullPointerException("encoded == null");
  /libcore/luni/src/main/java/java/util/
PropertyResourceBundle.java 49 throw new NullPointerException("stream == null");
  /libcore/luni/src/main/java/java/util/concurrent/locks/
LockSupport.java 253 * @throws NullPointerException if argument is null
258 throw new NullPointerException();
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ListOfTypes.java 42 throw new NullPointerException("type == null");
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 70 throw new NullPointerException("name == null");
97 throw new NullPointerException("name == null");
136 throw new NullPointerException("name == null");
149 throw new NullPointerException("name == null");
  /libcore/luni/src/test/java/libcore/java/io/
OldByteArrayOutputStreamTest.java 90 fail("Test 4: NullPointerException expected.");
91 } catch (NullPointerException e) {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java 29 exceptions[0] = NullPointerException.class;
  /libcore/luni/src/test/java/libcore/java/util/
OldAbstractSetTest.java 93 fail("NullPointerException expected");
94 } catch (NullPointerException e) {
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesNameTest.java 31 fail("NullPointerException expected");
32 } catch (NullPointerException ee) {
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldAbstractPreferencesTest.java 65 fail("NullPointerException expected");
66 } catch (NullPointerException e) {
119 fail("NullPointerException expected");
120 } catch (NullPointerException e) {
202 fail("NullPointerException expected");
203 } catch (NullPointerException e) {
245 fail("NullPointerException expected");
246 } catch (NullPointerException e) {
268 fail("NullPointerException expected");
269 } catch (NullPointerException e)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PBEParameterSpecTest.java 48 fail("A NullPointerException should be was thrown "
50 } catch (NullPointerException e) {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator1Test.java 91 * throws NullPointerException must be thrown is null
99 fail("NullPointerException or NoSuchAlgorithmException should be thrown");
100 } catch (NullPointerException e) {
186 * throws NullPointerException must be thrown is null
197 fail("NullPointerException or NoSuchAlgorithmException should be thrown");
198 } catch (NullPointerException e) {
258 * throws NullPointerException must be thrown is null
268 fail("NullPointerException or NoSuchAlgorithmException should be thrown");
269 } catch (NullPointerException e) {
379 fail("NullPointerException must be thrown")
    [all...]
IdentityScope2Test.java 163 } catch (NullPointerException npe) {
240 fail("Test 1: NullPointerException expected.");
241 } catch (NullPointerException expected) {
255 fail("Test 4: NullPointerException expected.");
256 } catch (NullPointerException expected) {
323 } catch (NullPointerException expected) {
KeyRepTypeTest.java 46 fail("NullPointerException expected");
47 } catch (NullPointerException e) {
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
InvocationTargetExceptionTest.java 100 public int invokeExceptionTest() throws NullPointerException {
101 throw new NullPointerException();
184 .getTargetException() instanceof NullPointerException);
205 e.getCause() instanceof NullPointerException);
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractQueueTest.java 76 throw new NullPointerException();
114 fail("should throw NullPointerException");
115 } catch (NullPointerException e) {
163 fail("should throw NullPointerException");
164 } catch (NullPointerException e) {
176 fail("should throw NullPointerException");
177 } catch (NullPointerException e) {
TimerTest.java 171 fail("NullPointerException expected");
172 } catch (NullPointerException e) {
178 fail("NullPointerException expected");
179 } catch (NullPointerException e) {
209 fail("NullPointerException expected");
210 } catch (NullPointerException e) {
401 // Ensure a Timer throws a NullPointerException if the task is null
407 } catch (NullPointerException e) {
411 "Scheduling a null task should throw NullPointerException",
415 // Ensure a Timer throws a NullPointerException if the date is nul
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLEngineResultHandshakeStatusTest.java 77 fail("NullPointerException/IllegalArgumentException should be thrown for NULL parameter");
78 } catch (NullPointerException npe) {
SSLEngineResultStatusTest.java 84 fail("NullPointerException/IllegalArgumentException should be thrown for NULL parameter");
85 } catch (NullPointerException npe) {
  /libcore/luni/src/test/java/tests/api/javax/security/auth/
SubjectTest.java 80 fail("NullPointerException wasn't thrown");
81 } catch (NullPointerException npe) {
107 fail("NullPointerException wasn't thrown");
108 } catch (NullPointerException npe) {
110 fail(e + " was thrown instead of NullPointerException");
149 fail("NullPointerException wasn't thrown");
150 } catch (NullPointerException npe) {
179 fail("NullPointerException wasn't thrown");
180 } catch (NullPointerException npe) {
182 fail(e + " was thrown instead of NullPointerException");
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
XMLReaderFactoryTest.java 99 } catch (NullPointerException e) {
  /libcore/luni/src/test/java/tests/security/spec/
EncodedKeySpecTest.java 52 fail("expected NullPointerException");
53 } catch (NullPointerException e) {
PKCS8EncodedKeySpecTest.java 54 fail("expected NullPointerException");
55 } catch (NullPointerException e) {

Completed in 803 milliseconds

<<21222324252627282930>>