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

1 2 34 5 6 7 8 91011>>

  /frameworks/base/opengl/java/android/opengl/
GLUtils.java 50 throw new NullPointerException("getInternalFormat can't be used with a null Bitmap");
72 throw new NullPointerException("getType can't be used with a null Bitmap");
109 throw new NullPointerException("texImage2D can't be used with a null Bitmap");
135 throw new NullPointerException("texImage2D can't be used with a null Bitmap");
157 throw new NullPointerException("texImage2D can't be used with a null Bitmap");
192 throw new NullPointerException("texSubImage2D can't be used with a null Bitmap");
217 throw new NullPointerException("texSubImage2D can't be used with a null Bitmap");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
BufferedOutputStreamTest.java 59 fail("should throw NullPointerException");
60 } catch (NullPointerException e) {
65 fail("should throw NullPointerException");
66 } catch (NullPointerException e) {
73 fail("should throw NullPointerException");
74 } catch (NullPointerException e) {
79 fail("should throw NullPointerException");
80 } catch (NullPointerException e) {
172 fail("should throw NullPointerException");
173 } catch (NullPointerException e)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 90 throw new NullPointerException("the encoding parameter is null");
111 throw new NullPointerException("contentType or subtype is null ");
128 throw new NullPointerException("null arg");
144 throw new NullPointerException("null arg alertInfo");
163 throw new NullPointerException("null arg eventType");
179 throw new NullPointerException("null arg method");
199 throw new NullPointerException("null arg response");
218 throw new NullPointerException("null arg scheme ");
242 throw new NullPointerException("null arg method");
270 throw new NullPointerException("null arg callId")
    [all...]
ContentDisposition.java 81 throw new NullPointerException(
108 throw new NullPointerException(
  /art/test/106-exceptions2/src/
Main.java 70 } catch (NullPointerException npe) {
77 } catch (NullPointerException npe) {
84 } catch (NullPointerException npe) {
98 } catch (NullPointerException npe) {
107 } catch (NullPointerException npe) {
126 } catch (NullPointerException npe) {
165 } catch (NullPointerException npe) {
173 } catch (NullPointerException npe) {
189 } catch (NullPointerException npe) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
StringTokenizerTest.java 175 fail("should throw NullPointerException");
176 } catch (NullPointerException e) {
183 fail("should throw NullPointerException");
184 } catch (NullPointerException e) {
194 fail("should throw NullPointerException");
195 } catch (NullPointerException e) {
202 fail("should throw NullPointerException");
203 } catch (NullPointerException e) {
213 fail("should throw NullPointerException");
214 } catch (NullPointerException e)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PAccessNetworkInfo.java 76 * @throws NullPointerException
80 throw new NullPointerException(
97 * @throws NullPointerException -- if null argument passed in
103 throw new NullPointerException(
123 * @throws NullPointerException
129 throw new NullPointerException(
148 * @throws NullPointerException
154 throw new NullPointerException(
173 * @throws NullPointerException -- if arg is null
178 throw new NullPointerException(
    [all...]
  /libcore/luni/src/main/java/javax/xml/validation/
SchemaFactory.java 177 * @throws NullPointerException
207 throw new NullPointerException("schemaLanguage == null");
209 throw new NullPointerException("factoryClassName == null");
240 * @throws NullPointerException If <code>schemaLanguage</code> is <code>null</code>.
263 * @exception NullPointerException
270 throw new NullPointerException("name == null");
311 * @exception NullPointerException
318 throw new NullPointerException("name == null");
340 * @exception NullPointerException
345 throw new NullPointerException("name == null")
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESKeySpecTest.java 23 import java.lang.NullPointerException;
109 fail("Should raise an NullPointerException "
111 } catch (NullPointerException e) {
113 fail("Should raise an NullPointerException "
119 } catch (NullPointerException e) {
120 fail("Unexpected NullPointerException was thrown.");
125 } catch (NullPointerException e) {
126 fail("Unexpected NullPointerException was thrown.");
132 fail("Should raise an NullPointerException "
134 } catch (NullPointerException e)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESKeySpecTest.java 24 import java.lang.NullPointerException;
109 fail("Should raise an NullPointerException "
111 } catch (NullPointerException e) {
113 fail("Should raise an NullPointerException "
119 } catch (NullPointerException e) {
120 fail("Unexpected NullPointerException was thrown.");
125 } catch (NullPointerException e) {
126 fail("Unexpected NullPointerException was thrown.");
132 fail("Should raise an NullPointerException "
134 } catch (NullPointerException e)
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldFileChannelTest.java 313 fail("should throw NullPointerException");
314 } catch (NullPointerException e) {
319 fail("should throw NullPointerException");
320 } catch (NullPointerException e) {
325 fail("should throw NullPointerException");
326 } catch (NullPointerException e) {
331 fail("should throw NullPointerException");
332 } catch (NullPointerException e) {
337 fail("should throw NullPointerException");
338 } catch (NullPointerException e)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
PathHolder.java 48 throw new NullPointerException("dirLocation == null");
51 throw new NullPointerException("fileNamePrefix == null");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
TypeNotPresentExceptionTest.java 37 NullPointerException npe = new NullPointerException();
  /external/okhttp/src/main/java/com/squareup/okhttp/
TunnelRequest.java 44 if (host == null) throw new NullPointerException("host == null");
45 if (userAgent == null) throw new NullPointerException("userAgent == null");
  /frameworks/base/media/mca/filterfw/java/android/filterfw/
MffEnvironment.java 89 throw new NullPointerException("No GLEnvironment in place to activate!");
103 throw new NullPointerException("No GLEnvironment in place to deactivate!");
  /libcore/dalvik/src/main/java/dalvik/system/
CloseGuard.java 151 throw new NullPointerException("reporter == null");
171 * @throws NullPointerException if closer is null, regardless of
177 throw new NullPointerException("closer == null");
  /libcore/luni/src/main/java/java/security/cert/
LDAPCertStoreParameters.java 42 * @throws NullPointerException
47 throw new NullPointerException("serverName == null");
70 * @throws NullPointerException
75 throw new NullPointerException("serverName == null");
PKIXCertPathValidatorResult.java 55 throw new NullPointerException("trustAnchor == null");
58 throw new NullPointerException("subjectPublicKey == null");
  /libcore/luni/src/main/java/java/security/spec/
ECPoint.java 53 throw new NullPointerException("affineX == null");
57 throw new NullPointerException("affineY == null");
PSSParameterSpec.java 94 throw new NullPointerException("mdName == null");
97 throw new NullPointerException("mgfName == null");
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathException.java 45 * <p>If <code>message</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
52 throw new NullPointerException("message == null");
60 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
64 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
70 throw new NullPointerException("cause == null");
  /art/test/003-omnibus-opcodes/src/
InstField.java 42 } catch (NullPointerException npe) {
48 } catch (NullPointerException npe) {
54 } catch (NullPointerException npe) {
60 } catch (NullPointerException npe) {
Monitor.java 44 } catch (NullPointerException npe) {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
IdItem.java 39 throw new NullPointerException("type == null");
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttAnnotationDefault.java 46 throw new NullPointerException("value == null");

Completed in 682 milliseconds

1 2 34 5 6 7 8 91011>>