Home
last modified time | relevance | path

Searched defs:throwable (Results 1 – 12 of 12) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
DThrowableTest.java67 public SuppressionsThrowable(String detailMessage, Throwable throwable, in SuppressionsThrowable()
74 Throwable throwable = new Throwable(); in testAddSuppressed() local
85 Throwable throwable = new Throwable(); in testAddDuplicateSuppressed() local
94 Throwable throwable = new Throwable(); in testGetSuppressedReturnsCopy() local
106 Throwable throwable = new SuppressionsThrowable("foo", null, false, true); in testAddSuppressedWithSuppressionDisabled() local
115 Throwable throwable = new Throwable(); in testAddSuppressedSelf() local
124 Throwable throwable = new Throwable(); in testAddSuppressedNull() local
133 Throwable throwable = newThrowable("Throwable", "A", "B"); in testPrintStackTraceWithCause() local
146 Throwable throwable = newThrowable("Throwable", "A", "B"); in testPrintStackTraceWithCauseAndSuppressed() local
169 Throwable throwable = newThrowable("Throwable", "A", "B"); in testPrintStackTraceWithEverything() local
[all …]
/libcore/luni/src/main/java/java/lang/
DError.java60 public Error(String detailMessage, Throwable throwable) { in Error()
71 public Error(Throwable throwable) { in Error()
DRuntimeException.java58 public RuntimeException(String detailMessage, Throwable throwable) { in RuntimeException()
69 public RuntimeException(Throwable throwable) { in RuntimeException()
DException.java59 public Exception(String detailMessage, Throwable throwable) { in Exception()
70 public Exception(Throwable throwable) { in Exception()
DThrowable.java375 public Throwable initCause(Throwable throwable) { in initCause()
405 public final void addSuppressed(Throwable throwable) { in addSuppressed()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DIllegalStateExceptionTest.java55 Throwable throwable = new Exception("msg"); in test_ConstructorLjava_lang_Throwable() local
72 Throwable throwable = new Exception("msg_exception"); in test_ConstructorLjava_lang_StringLjava_lang_Throwable() local
DUnsupportedOperationExceptionTest.java56 Throwable throwable = new Exception("msg"); in test_ConstructorLjava_lang_Throwable() local
74 Throwable throwable = new Exception("msg_exception"); in test_ConstructorLjava_lang_StringLjava_lang_Throwable() local
DRuntimeExceptionTest.java53 Throwable throwable = new Exception("msg"); in test_ConstructorLjava_lang_Throwable() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DInvalidPropertiesFormatExceptionTest.java43 Throwable throwable = new Throwable(); in test_Constructor_Ljava_lang_Throwable() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DLoadLocaleProviderTestHelper.java24 private Throwable throwable; field in LoadLocaleProviderTestHelper
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DUndeclaredThrowableExceptionTests.java10 private static EOFException throwable = new EOFException(); field in UndeclaredThrowableExceptionTests
/libcore/libart/src/main/java/java/lang/
DThread.java1087 public final synchronized void stop(Throwable throwable) { in stop()