HomeSort by relevance Sort by last modified time
    Searched defs:npe (Results 1 - 25 of 26) sorted by null

1 2

  /art/test/008-exceptions/src/
Main.java 24 } catch (NullPointerException npe) {
25 System.out.print("Got an NPE: ");
26 System.out.println(npe.getMessage());
27 npe.printStackTrace();
37 } catch (NullPointerException npe) {
40 npe2.initCause(npe);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
AssertionErrorTest.java 36 NullPointerException npe = new NullPointerException("null value"); local
37 e = new AssertionError(npe);
38 assertEquals(npe.toString(), e.getMessage());
39 assertSame(npe, e.getCause());
ExceptionInInitializerErrorTest.java 45 NullPointerException npe = new NullPointerException("fixture"); local
46 ExceptionInInitializerError e = new ExceptionInInitializerError(npe);
49 assertSame(npe, e.getException());
50 assertSame(npe, e.getCause());
TypeNotPresentExceptionTest.java 37 NullPointerException npe = new NullPointerException(); local
38 e = new TypeNotPresentException(getClass().getName(), npe);
40 assertSame(npe, e.getCause());
SecurityExceptionTest.java 50 NullPointerException npe = new NullPointerException(); local
51 SecurityException e = new SecurityException("fixture", npe);
53 assertSame(npe, e.getCause());
61 NullPointerException npe = new NullPointerException(); local
62 SecurityException e = new SecurityException(npe);
63 assertSame(npe, e.getCause());
IllegalArgumentExceptionTest.java 67 NullPointerException npe = new NullPointerException(); local
69 npe);
71 assertSame(npe, e.getCause());
  /libcore/luni/src/test/java/libcore/java/lang/
OldRuntimeExceptionTest.java 26 NullPointerException npe = new NullPointerException(); local
27 RuntimeException re = new RuntimeException(message, npe);
29 assertEquals(npe, re.getCause());
31 re = new RuntimeException(null, npe);
39 NullPointerException npe = new NullPointerException(); local
40 RuntimeException re = new RuntimeException(npe);
41 assertEquals(npe, re.getCause());
OldThrowableTest.java 25 NullPointerException npe = new NullPointerException(); local
26 Throwable thr = new Throwable(message, npe);
28 assertEquals("cause is incorrect.", npe, thr.getCause());
30 thr = new Throwable(null, npe);
32 assertEquals("cause is incorrect.", npe, thr.getCause());
41 NullPointerException npe = new NullPointerException(); local
42 Throwable thr = new Throwable(npe);
44 assertEquals("Returned cause is incorrect.", npe, thr.getCause());
73 NullPointerException npe = new NullPointerException(); local
74 Throwable thr = new Throwable(message, npe);
81 NullPointerException npe = new NullPointerException(); local
117 NullPointerException npe = new NullPointerException(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
FactoryConfigurationErrorTest.java 82 NullPointerException npe = new NullPointerException(); local
83 fce = new FactoryConfigurationError(npe);
84 assertEquals(npe, fce.getException());
  /frameworks/base/services/core/java/com/android/server/
ConnectivityService.java     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
ant.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
antsupportlib.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.2/
ant-1.8.2.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 

Completed in 715 milliseconds

1 2