/dalvik/libcore/luni/src/main/java/java/lang/ |
H A D | Error.java | 62 * @param throwable 66 public Error(String detailMessage, Throwable throwable) { argument 67 super(detailMessage, throwable); 74 * @param throwable 78 public Error(Throwable throwable) { argument 79 super(throwable);
|
H A D | Exception.java | 61 * @param throwable 65 public Exception(String detailMessage, Throwable throwable) { argument 66 super(detailMessage, throwable); 73 * @param throwable 77 public Exception(Throwable throwable) { argument 78 super(throwable);
|
H A D | RuntimeException.java | 61 * @param throwable 65 public RuntimeException(String detailMessage, Throwable throwable) { argument 66 super(detailMessage, throwable); 73 * @param throwable 77 public RuntimeException(Throwable throwable) { argument 78 super(throwable);
|
H A D | VMThread.java | 84 void stop(Throwable throwable) { argument
|
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
H A D | UndeclaredThrowableExceptionTests.java | 16 private static EOFException throwable = new EOFException(); field in class:UndeclaredThrowableExceptionTests 29 throwable); 30 assertSame("Wrong cause returned", throwable, ute.getCause()); 44 throwable); 45 assertSame("Wrong undeclared throwable returned", throwable, ute 60 throwable); 61 assertEquals("Wrong cause returned", throwable, e.getCause()); 62 assertEquals("Wrong throwable returned", throwable, [all...] |
/dalvik/libcore/luni-kernel/src/main/java/java/lang/ |
H A D | Throwable.java | 102 * @param throwable 106 public Throwable(String detailMessage, Throwable throwable) { argument 109 cause = throwable; 116 * @param throwable 120 public Throwable(Throwable throwable) { argument 122 this.detailMessage = throwable == null ? null : throwable.toString(); 123 cause = throwable; 283 Throwable throwable = getCause(); 284 while (throwable ! 361 initCause(Throwable throwable) argument [all...] |
H A D | Thread.java | 1313 * <code>throwable()</code>. The Thread is resumed if it was suspended 1315 * <code>throwable()</code>. 1317 * @param throwable Throwable object to be thrown by the Thread 1320 * @throws NullPointerException if <code>throwable()</code> is 1328 public final synchronized void stop(Throwable throwable) { argument 1337 if (throwable == null) { 1343 vmt.stop(throwable);
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
H A D | NotImplementedException.java | 83 * @param throwable 85 public NotImplementedException(String detailMessage, Throwable throwable) { argument 86 super(detailMessage, throwable); 92 * @param throwable 94 public NotImplementedException(Throwable throwable) { argument 95 super(throwable);
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/ |
H A D | LocalizedException.java | 27 * @param throwable the cause 29 public LocalizedException(ErrorBundle message, Throwable throwable) argument 33 this.cause = throwable;
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/x509/ |
H A D | CertPathReviewerException.java | 15 public CertPathReviewerException(ErrorBundle errorMessage, Throwable throwable) argument 17 super(errorMessage, throwable); 27 Throwable throwable, 31 super(errorMessage, throwable); 25 CertPathReviewerException( ErrorBundle errorMessage, Throwable throwable, CertPath certPath, int index) argument
|
/dalvik/libcore/luni/src/test/java/com/google/coretests/ |
H A D | CoreTestRunnable.java | 137 Throwable throwable = null; 158 throwable = (Throwable)ois.readObject(); 161 throwable = new RuntimeException("Error isolating test", ex); 167 if (throwable != null) { 168 throw throwable;
|
H A D | CoreTestIsolator.java | 95 private static void saveStackTrace(Throwable throwable, String fileName) { argument 100 oos.writeObject(throwable);
|
/dalvik/vm/ |
H A D | Exception.c | 400 * takes a throwable. If we can't find one, we fall back on calling 705 ClassObject* throwable = local 707 if (throwable == NULL) { 735 throwable = dvmResolveClass(method->clazz, handler->typeIdx, 737 if (throwable == NULL) { 758 if (dvmInstanceof(excepClass, throwable)) {
|
H A D | Thread.c | 1514 ClassObject* throwable; local
|
/dalvik/vm/reflect/ |
H A D | Proxy.c | 46 static bool mustWrapException(const Method* method, const Object* throwable); 288 * We also allocate an array of arrays of throwable classes, one for each 648 * Create a local array with a copy of the throwable classes declared by 733 /* mix is a subclass of a declared throwable, keep it */ 1054 static bool mustWrapException(const Method* method, const Object* throwable) argument 1061 if (!dvmIsCheckedException(throwable)) 1088 if (dvmInstanceof(throwable->clazz, classes[i])) {
|
/dalvik/libcore/support/src/test/java/tests/resources/ |
H A D | junit4-4.3.1.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ... |