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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/lang/
NullPointerException.java 44 * {@code NullPointerException} objects may be constructed by the
53 class NullPointerException extends RuntimeException {
57 * Constructs a {@code NullPointerException} with no detail message.
59 public NullPointerException() {
64 * Constructs a {@code NullPointerException} with the specified
69 public NullPointerException(String s) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_throw/d/
T_opc_throw_5.java 22 throw new NullPointerException();
  /art/test/524-boolean-simplifier-regression/src/
Main.java 20 throw new NullPointerException();
27 } catch (NullPointerException npe) {
  /dalvik/dx/tests/115-merge/testdata/
TryCatchFinally.java 9 throw new NullPointerException();
14 } catch (NullPointerException expected) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
NullPointerExceptionTest.java 24 * java.lang.NullPointerException#NullPointerException()
27 NullPointerException e = new NullPointerException();
34 * 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();
  /art/test/122-npe/src/
Main.java 39 NullPointerException npe = null;
46 } catch (NullPointerException e) {
54 } catch (NullPointerException e) {
62 } catch (NullPointerException e) {
69 } catch (NullPointerException e) {
76 } catch (NullPointerException e) {
83 } catch (NullPointerException e) {
90 } catch (NullPointerException e) {
97 } catch (NullPointerException e) {
104 } catch (NullPointerException e)
    [all...]
  /art/test/091-override-package-private-method/src/
OverridePackagePrivateMethodTest.java 20 throw new NullPointerException("Got null");
  /external/conscrypt/src/test/java/org/conscrypt/
NativeRefTest.java 25 fail("Should throw NullPointerException when arguments are NULL");
26 } catch(NullPointerException expected) {
  /frameworks/base/media/java/android/media/midi/
MidiSender.java 32 throw new NullPointerException("receiver null in MidiSender.connect");
44 throw new NullPointerException("receiver null in MidiSender.disconnect");
  /libcore/ojluni/src/main/java/java/security/spec/
RSAMultiPrimePrivateCrtKeySpec.java 80 * @exception NullPointerException if any of the parameters, i.e.
100 throw new NullPointerException("the modulus parameter must be " +
104 throw new NullPointerException("the publicExponent parameter " +
108 throw new NullPointerException("the privateExponent parameter " +
112 throw new NullPointerException("the primeP parameter " +
116 throw new NullPointerException("the primeQ parameter " +
120 throw new NullPointerException("the primeExponentP parameter " +
124 throw new NullPointerException("the primeExponentQ parameter " +
128 throw new NullPointerException("the crtCoefficient parameter " +
RSAOtherPrimeInfo.java 69 * @exception NullPointerException if any of the parameters, i.e.
78 throw new NullPointerException("the prime parameter must be " +
82 throw new NullPointerException("the primeExponent parameter " +
86 throw new NullPointerException("the crtCoefficient parameter " +
ECGenParameterSpec.java 50 * @exception NullPointerException if <code>stdName</code>
55 throw new NullPointerException("stdName is null");
  /art/test/140-dce-regression/src/
Main.java 25 } catch (NullPointerException npe) {
  /art/test/479-regression-implicit-null-check/src/
Main.java 45 throw new RuntimeException("Failed to throw NullPointerException");
46 } catch (NullPointerException e) {
  /dalvik/dexgen/src/com/android/dexgen/rop/
BaseAttribute.java 35 throw new NullPointerException("name == null");
  /external/droiddriver/src/io/appium/droiddriver/util/
Preconditions.java 32 * @throws NullPointerException if {@code reference} is null
36 throw new NullPointerException();
  /external/testng/src/test/java/test/factory/
FactoryFailureSampleTest.java 10 throw new NullPointerException();
  /external/testng/src/test/java/test/skipex/
SkipAndExpectedSampleTest.java 7 @Test(expectedExceptions = NullPointerException.class)
  /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...]
  /art/test/081-hot-exceptions/src/
Main.java 21 int getArrayElement(int i) throws NullPointerException {
35 } catch (NullPointerException npe) {
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttExceptions.java 45 } catch (NullPointerException ex) {
47 throw new NullPointerException("exceptions == null");

Completed in 710 milliseconds

1 2 3 4 5 6 7 8 91011>>