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

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/java/util/concurrent/
ExecutorCompletionService.java 115 * @throws NullPointerException if executor is {@code null}
119 throw new NullPointerException();
137 * @throws NullPointerException if executor or completionQueue are {@code null}
142 throw new NullPointerException();
150 if (task == null) throw new NullPointerException();
157 if (task == null) throw new NullPointerException();
  /libcore/luni/src/main/java/javax/crypto/spec/
PBEParameterSpec.java 43 * @throws NullPointerException
48 throw new NullPointerException("salt == null");
  /libcore/luni/src/main/java/org/apache/harmony/security/
SystemScope.java 82 throw new NullPointerException("name == null");
102 throw new NullPointerException("identity == null");
129 throw new NullPointerException("identity == null");
134 throw new NullPointerException("name == null");
  /libcore/luni/src/test/java/libcore/java/net/
OldPasswordAuthenticationTest.java 30 fail("NullPointerException was not thrown.");
31 } catch (NullPointerException npe) {
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
FactoryConfigurationErrorTest.java 82 NullPointerException npe = new NullPointerException();
94 assertEquals(new NullPointerException().toString(),
96 new NullPointerException()).getMessage());
  /libcore/luni/src/test/java/tests/security/spec/
RSAOtherPrimeInfoTest.java 51 * Assertion: NullPointerException if prime is null
59 } catch (NullPointerException e) {
65 * Assertion: NullPointerException if primeExponent is null
73 } catch (NullPointerException e) {
79 * Assertion: NullPointerException if crtCoefficient is null
87 } catch (NullPointerException e) {
93 * Assertion: NullPointerException if prime and crtCoefficient is null
101 } catch (NullPointerException e) {
  /cts/tests/tests/widget/src/android/widget/cts/
AnalogClockTest.java 54 fail("There should be a NullPointerException thrown out.");
55 } catch (NullPointerException e) {
61 fail("There should be a NullPointerException thrown out.");
62 } catch (NullPointerException e) {
68 fail("There should be a NullPointerException thrown out.");
69 } catch (NullPointerException e) {
FrameLayout_LayoutParamsTest.java 55 fail("did not throw NullPointerException when context and attrs are null.");
56 } catch (NullPointerException e) {
65 fail("did not throw NullPointerException when ViewGroup.LayoutParams is null.");
66 } catch (NullPointerException e) {
72 fail("did not throw NullPointerException when ViewGroup.MarginLayoutParams is null.");
73 } catch (NullPointerException e) {
RadioButtonTest.java 46 fail("The constructor should throw NullPointerException when param Context is null.");
47 } catch (NullPointerException e) {
53 fail("The constructor should throw NullPointerException when param Context is null.");
54 } catch (NullPointerException e) {
61 fail("The constructor should throw NullPointerException when param Context is null.");
62 } catch (NullPointerException e) {
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdMember.java 51 throw new NullPointerException("definingClass == null");
55 throw new NullPointerException("nat == null");
59 throw new NullPointerException("attributes == null");
  /dalvik/dx/src/com/android/dx/cf/iface/
StdMember.java 51 throw new NullPointerException("definingClass == null");
55 throw new NullPointerException("nat == null");
59 throw new NullPointerException("attributes == null");
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterOutputStreamTest.java 45 fail("Should throw NullPointerException");
46 } catch (NullPointerException e) {
59 fail("Should throw NullPointerException");
60 } catch (NullPointerException e) {
66 fail("Should throw NullPointerException");
67 } catch (NullPointerException e) {
80 fail("Should throw NullPointerException");
81 } catch (NullPointerException e) {
87 fail("Should throw NullPointerException");
88 } catch (NullPointerException e)
    [all...]
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
SoundHandleJme.java 50 throw new NullPointerException();
63 throw new NullPointerException();
67 throw new NullPointerException();
  /external/jsilver/src/org/clearsilver/
CSUtil.java 37 * @throws NullPointerException if no loadpaths are found.
49 * {@link NullPointerException} is thrown. Loadpaths are not needed if
52 * @throws NullPointerException if no loadpaths are found and allowEmpty is
62 throw new NullPointerException("No HDF loadpaths located in the "
83 throw new NullPointerException("No filename provided");
86 throw new NullPointerException("No loadpaths provided.");
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberMatchTest.java 60 } catch (NullPointerException e) { /* success */ }
65 } catch (NullPointerException e) { /* success */ }
70 } catch (NullPointerException e) { /* success */ }
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 129 throw new NullPointerException("null value");
198 throw new NullPointerException(
229 throw new NullPointerException(
263 throw new NullPointerException("Null URI");
295 throw new NullPointerException("null arg");
323 throw new NullPointerException("null arg");
351 throw new NullPointerException("null arg");
379 throw new NullPointerException("null arg");
474 throw new NullPointerException("Null parameter");
514 throw new NullPointerException(
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/
Route.java 30 if (address == null) throw new NullPointerException("address == null");
31 if (proxy == null) throw new NullPointerException("proxy == null");
32 if (inetSocketAddress == null) throw new NullPointerException("inetSocketAddress == null");
  /frameworks/base/core/java/android/os/
SELinux.java 137 * @exception NullPointerException if the pathname is a null object.
139 public static boolean restorecon(String pathname) throws NullPointerException {
140 if (pathname == null) { throw new NullPointerException(); }
165 * @exception NullPointerException if the file is a null object.
167 public static boolean restorecon(File file) throws NullPointerException {
  /libcore/luni/src/main/java/java/io/
SequenceInputStream.java 48 * @throws NullPointerException
53 throw new NullPointerException("s1 == null");
68 * @throws NullPointerException
76 throw new NullPointerException("element is null");
115 throw new NullPointerException("element is null");
169 * @throws NullPointerException
  /libcore/luni/src/main/java/libcore/util/
BasicLruCache.java 46 throw new NullPointerException("key == null");
72 throw new NullPointerException("key == null");
74 throw new NullPointerException("value == null");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DataInputStreamTest.java 218 } catch (NullPointerException expected) {
225 } catch (NullPointerException expected) {
232 } catch (NullPointerException expected) {
243 } catch (NullPointerException expected) {
249 fail("should throw NullPointerException");
250 } catch (NullPointerException e) {
256 fail("should throw NullPointerException");
257 } catch (NullPointerException e) {
263 fail("should throw NullPointerException");
264 } catch (NullPointerException e)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
TypeIdsSection.java 58 throw new NullPointerException("cst == null");
105 throw new NullPointerException("type == null");
128 throw new NullPointerException("type == null");
153 throw new NullPointerException("type == null");
176 throw new NullPointerException("type == null");
  /dalvik/dx/src/com/android/dx/dex/file/
TypeIdsSection.java 61 throw new NullPointerException("cst == null");
110 throw new NullPointerException("type == null");
133 throw new NullPointerException("type == null");
158 throw new NullPointerException("type == null");
181 throw new NullPointerException("type == null");
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 44 fail("provider is null: No expected NullPointerException");
45 } catch (NullPointerException e) {
50 fail("type is null: No expected NullPointerException");
51 } catch (NullPointerException e) {
56 fail("algorithm is null: No expected NullPointerException");
57 } catch (NullPointerException e) {
62 fail("className is null: No expected NullPointerException");
63 } catch (NullPointerException e) {
83 fail("No expected NullPointerException");
84 } catch (NullPointerException e) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathFactoryImpl.java 69 * @throws NullPointerException If <code>objectModel</code> is <code>null</code>.
79 throw new NullPointerException( fmsg );
133 * @throws NullPointerException if <code>name</code> is
144 throw new NullPointerException( fmsg );
183 * @throws NullPointerException if <code>name</code> is
194 throw new NullPointerException( fmsg );
216 * <p>A <code>NullPointerException</code> is thrown if
221 * @throws NullPointerException If <code>resolver</code> is
231 throw new NullPointerException( fmsg );
243 * <p>A <code>NullPointerException</code> is thrown if <code>resolver</code> is <code>null</code>.</p
    [all...]

Completed in 859 milliseconds

1 2 3 4 56 7 8 91011>>