Searched defs:throwable (Results 1 - 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DNoClassDefFoundError.java71 * @param throwable
74 private NoClassDefFoundError(String detailMessage, Throwable throwable) { argument
75 super(detailMessage, throwable);
/libcore/ojluni/src/main/native/
H A DThrowable.c50 Throwable_fillInStackTrace(JNIEnv *env, jobject throwable, int dummy) argument
52 JVM_FillInStackTrace(env, throwable);
53 return throwable;
57 Throwable_getStackTraceDepth(JNIEnv *env, jobject throwable) argument
59 return JVM_GetStackTraceDepth(env, throwable);
64 jobject throwable, jint index)
66 return JVM_GetStackTraceElement(env, throwable, index);
63 Throwable_getStackTraceElement(JNIEnv *env, jobject throwable, jint index) argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
H A DUndeclaredThrowableExceptionTests.java10 private static EOFException throwable = new EOFException(); field in class:UndeclaredThrowableExceptionTests
17 throwable);
18 assertSame("Wrong cause returned", throwable, ute.getCause());
26 throwable);
27 assertSame("Wrong undeclared throwable returned", throwable, ute
36 throwable);
37 assertEquals("Wrong cause returned", throwable, e.getCause());
38 assertEquals("Wrong throwable returned", throwable,
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
H A DLoadLocaleProviderTestHelper.java24 private Throwable throwable; field in class:LoadLocaleProviderTestHelper
36 return throwable;
43 throwable = t;
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DVertex.java54 private Throwable throwable; field in class:Vertex
99 * return the throwable associated with this vertex;
105 return throwable;
109 * set throwable associated with this vertex; default value is null.
111 * @param throwable Throwable associated with this vertex
114 void setThrowable(Throwable throwable) { argument
115 this.throwable = throwable;
197 * return Vertex throwable as String compatible with
204 if (throwable !
[all...]
H A DBuildStep.java32 * <code>Vertex</code> state description, a certificate, a possible throwable,
43 private Throwable throwable; field in class:BuildStep
88 throwable = vertex.getThrowable();
169 return throwable;
/libcore/luni/src/test/java/libcore/java/lang/
H A DThrowableTest.java67 public SuppressionsThrowable(String detailMessage, Throwable throwable, argument
69 super(detailMessage, throwable, enableSuppression, writableStackTrace);
74 Throwable throwable = new Throwable();
75 assertSuppressed(throwable);
77 throwable.addSuppressed(suppressedA);
78 assertSuppressed(throwable, suppressedA);
80 throwable.addSuppressed(suppressedB);
81 assertSuppressed(throwable, suppressedA, suppressedB);
85 Throwable throwable = new Throwable();
87 throwable
318 assertSerialized(final Throwable throwable, String golden) argument
338 printStackTraceToString(Throwable throwable) argument
344 assertSuppressed(Throwable throwable, Throwable... expectedSuppressed) argument
[all...]
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 6909 milliseconds