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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/lang/
NullPointerException.java 27 public class NullPointerException extends RuntimeException {
32 * Constructs a new {@code NullPointerException} that includes the current
35 public NullPointerException() {
39 * Constructs a new {@code NullPointerException} with the current stack
45 public NullPointerException(String detailMessage) {
  /dalvik/tests/007-exceptions/src/
Main.java 24 } catch (NullPointerException npe) {
34 } catch (NullPointerException npe) {
35 NullPointerException npe2;
36 npe2 = new NullPointerException("second throw");
43 throw new NullPointerException("first throw");
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_throw/d/
T_opc_throw_5.java 22 throw new NullPointerException();
  /dalvik/dx/tests/115-merge/testdata/
TryCatchFinally.java 9 throw new NullPointerException();
14 } catch (NullPointerException expected) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
NullPointerExceptionTest.java 24 * @tests java.lang.NullPointerException#NullPointerException()
27 NullPointerException e = new NullPointerException();
34 * @tests java.lang.NullPointerException#NullPointerException(java.lang.String)
37 NullPointerException e = new NullPointerException("fixture");
SecurityExceptionTest.java 50 NullPointerException npe = new NullPointerException();
61 NullPointerException npe = new NullPointerException();
  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 31 * @throws NullPointerException if {@code reference} is null
35 throw new NullPointerException();
48 * @throws NullPointerException if {@code reference} is null
52 throw new NullPointerException(String.valueOf(errorMessage));
  /libcore/luni/src/main/java/java/security/spec/
RSAOtherPrimeInfo.java 52 throw new NullPointerException("prime == null");
55 throw new NullPointerException("primeExponent == null");
58 throw new NullPointerException("crtCoefficient == null");
ECGenParameterSpec.java 38 throw new NullPointerException("name == null");
ECPrivateKeySpec.java 43 // throw NullPointerException if s or params is null
45 throw new NullPointerException("s == null");
48 throw new NullPointerException("params == null");
ECPublicKeySpec.java 43 // throw NullPointerException if w or params is null
45 throw new NullPointerException("w == null");
48 throw new NullPointerException("params == null");
RSAMultiPrimePrivateCrtKeySpec.java 88 throw new NullPointerException("modulus == null");
91 throw new NullPointerException("privateExponent == null");
94 throw new NullPointerException("publicExponent == null");
97 throw new NullPointerException("primeP == null");
100 throw new NullPointerException("primeQ == null");
103 throw new NullPointerException("primeExponentP == null");
106 throw new NullPointerException("primeExponentQ == null");
109 throw new NullPointerException("crtCoefficient == null");
  /dalvik/dexgen/src/com/android/dexgen/rop/
BaseAttribute.java 35 throw new NullPointerException("name == null");
  /libcore/luni/src/main/java/java/net/
URISyntaxException.java 43 * @throws NullPointerException
53 throw new NullPointerException("input == null");
55 throw new NullPointerException("reason == null");
74 * @throws NullPointerException
82 throw new NullPointerException("input == null");
84 throw new NullPointerException("reason == null");
  /libcore/luni/src/test/java/libcore/java/lang/
OldRuntimeExceptionTest.java 26 NullPointerException npe = new NullPointerException();
39 NullPointerException npe = new NullPointerException();
OldThrowableTest.java 25 NullPointerException npe = new NullPointerException();
41 NullPointerException npe = new NullPointerException();
73 NullPointerException npe = new NullPointerException();
81 NullPointerException npe = new NullPointerException();
117 NullPointerException npe = new NullPointerException();
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESedeKeySpecTest.java 24 import java.lang.NullPointerException;
46 fail("Should raise an NullPointerException "
48 } catch (NullPointerException e) {
50 fail("Should raise an NullPointerException "
56 } catch (NullPointerException e) {
57 fail("Unexpected NullPointerException was thrown.");
64 } catch (NullPointerException e) {
65 fail("Unexpected NullPointerException was thrown.");
71 fail("Should raise an NullPointerException "
73 } catch (NullPointerException e)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESedeKeySpecTest.java 25 import java.lang.NullPointerException;
46 fail("Should raise an NullPointerException "
48 } catch (NullPointerException e) {
50 fail("Should raise an NullPointerException "
56 } catch (NullPointerException e) {
57 fail("Unexpected NullPointerException was thrown.");
64 } catch (NullPointerException e) {
65 fail("Unexpected NullPointerException was thrown.");
71 fail("Should raise an NullPointerException "
73 } catch (NullPointerException e)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttExceptions.java 45 } catch (NullPointerException ex) {
47 throw new NullPointerException("exceptions == null");
AttInnerClasses.java 43 } catch (NullPointerException ex) {
45 throw new NullPointerException("innerClasses == null");
AttLineNumberTable.java 44 } catch (NullPointerException ex) {
46 throw new NullPointerException("lineNumbers == null");
BaseLocalVariables.java 44 } catch (NullPointerException ex) {
46 throw new NullPointerException("localVariables == null");
  /dalvik/tests/081-hot-exceptions/src/
Main.java 21 int getArrayElement(int i) throws NullPointerException {
35 } catch (NullPointerException npe) {
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserFactory.java 63 * @exception java.lang.NullPointerException There is no value
82 NullPointerException,
87 throw new NullPointerException("No value for sax.parser property");
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
BuildProperties.java 70 } catch (NullPointerException e) {
80 } catch (NullPointerException e) {
87 } catch (NullPointerException e) {
94 } catch (NullPointerException e) {
101 } catch (NullPointerException e) {
107 } catch (NullPointerException e) {
114 } catch (NullPointerException e) {
122 } catch (NullPointerException e) {
130 } catch (NullPointerException e) {
137 } catch (NullPointerException e)
    [all...]

Completed in 1070 milliseconds

1 2 3 4 5 6 7 8 91011>>