Searched defs:throwable (Results 1 – 7 of 7) sorted by relevance
| /libcore/luni/src/test/java/libcore/java/lang/ |
| D | ThrowableTest.java | 42 public SuppressionsThrowable(String detailMessage, Throwable throwable, in SuppressionsThrowable() 49 Throwable throwable = new Throwable(); in testAddSuppressed() local 60 Throwable throwable = new Throwable(); in testAddDuplicateSuppressed() local 69 Throwable throwable = new Throwable(); in testGetSuppressedReturnsCopy() local 81 Throwable throwable = new SuppressionsThrowable("foo", null, false); in testAddSuppressedWithSuppressionDisabled() local 90 Throwable throwable = new Throwable(); in testAddSuppressedSelf() local 99 Throwable throwable = new Throwable(); in testAddSuppressedNull() local 108 Throwable throwable = newThrowable("Throwable", "A", "B"); in testPrintStackTraceWithCause() local 121 Throwable throwable = newThrowable("Throwable", "A", "B"); in testPrintStackTraceWithCauseAndSuppressed() local 144 Throwable throwable = newThrowable("Throwable", "A", "B"); in testPrintStackTraceWithEverything() local [all …]
|
| /libcore/luni/src/main/java/java/lang/ |
| D | Error.java | 60 public Error(String detailMessage, Throwable throwable) { in Error() 71 public Error(Throwable throwable) { in Error()
|
| D | RuntimeException.java | 58 public RuntimeException(String detailMessage, Throwable throwable) { in RuntimeException() 69 public RuntimeException(Throwable throwable) { in RuntimeException()
|
| D | Exception.java | 59 public Exception(String detailMessage, Throwable throwable) { in Exception() 70 public Exception(Throwable throwable) { in Exception()
|
| D | Throwable.java | 107 public Throwable(String detailMessage, Throwable throwable) { in Throwable() method in Throwable 120 public Throwable(Throwable throwable) { in Throwable() method in Throwable 135 protected Throwable(String detailMessage, Throwable throwable, boolean enableSuppression) { in Throwable() method in Throwable 380 public Throwable initCause(Throwable throwable) { in initCause() 413 public final void addSuppressed(Throwable throwable) { in addSuppressed()
|
| D | Thread.java | 1075 public final synchronized void stop(Throwable throwable) { in stop()
|
| /libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
| D | UndeclaredThrowableExceptionTests.java | 10 private static EOFException throwable = new EOFException(); field in UndeclaredThrowableExceptionTests
|