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

1 2

  /external/easymock/src/org/easymock/internal/
ThrowableWrapper.java 18 public class ThrowableWrapper extends Throwable {
22 private final Throwable throwable; field in class:ThrowableWrapper
24 public ThrowableWrapper(final Throwable throwable) {
25 this.throwable = throwable;
28 public Throwable getThrowable() {
29 return throwable;
  /cts/tests/tests/view/src/android/view/cts/
InflateExceptionTest.java 44 args = {java.lang.String.class, java.lang.Throwable.class}
50 args = {java.lang.Throwable.class}
70 Throwable throwable = new Exception(); local
75 ne = new InflateException(detailMessage, throwable);
103 ne = new InflateException(throwable);
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
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
50 * @tests java.lang.reflect.UndeclaredThrowableException#UndeclaredThrowableException(java.lang.Throwable)
56 args = {java.lang.Throwable.class}
60 throwable);
61 assertEquals("Wrong cause returned", throwable, e.getCause())
    [all...]
  /external/guava/src/com/google/common/base/
Throwables.java 26 * Static utility methods pertaining to instances of {@link Throwable}.
36 * Propagates {@code throwable} exactly as-is, if and only if it is an
43 * } catch (Throwable t) {
50 public static <X extends Throwable> void propagateIfInstanceOf(
51 Throwable throwable, Class<X> declaredType) throws X {
52 if (declaredType.isInstance(throwable)) {
53 throw declaredType.cast(throwable);
58 * Propagates {@code throwable} exactly as-is, if and only if it is an
65 * } catch (Throwable t)
    [all...]
  /frameworks/base/awt/java/awt/event/
InvocationEvent.java 51 private Throwable throwable; field in class:InvocationEvent
78 throwable = null;
88 } catch (Throwable t) {
89 throwable = t;
109 return (throwable != null && throwable instanceof Exception) ?
110 (Exception)throwable : null;
113 public Throwable getThrowable() {
114 return throwable;
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
MessageBoxLog.java 65 public void error(Throwable throwable, String errorFormat, Object... arg) {
70 if (throwable != null) {
71 logMessages.add(throwable.getMessage());
  /cts/tests/src/android/app/cts/
IntentServiceStub.java 40 private static Throwable throwable; field in class:IntentServiceStub
49 throwable = null;
52 public static void waitToFinish(long timeout) throws Throwable {
59 if (throwable != null) {
60 throw throwable;
72 } catch (Throwable t) {
73 throwable = t;
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
CoreTestRunnable.java 106 } catch (Throwable e) {
128 private void runInternally() throws Throwable {
136 private void runExternally() throws Throwable {
137 Throwable throwable = null; local
158 throwable = (Throwable)ois.readObject();
161 throwable = new RuntimeException("Error isolating test: " + program, ex);
167 if (throwable != null) {
168 throw throwable;
    [all...]
  /dalvik/libcore/luni-kernel/src/main/java/java/lang/
Throwable.java 30 * circumstances in which the {@code Throwable} was created (basically an error
34 * A {@code Throwable} can also include a cause, which is a nested {@code
35 * Throwable} that represents the original problem that led to this {@code
36 * Throwable}. It is often used for wrapping various types of errors into a
37 * common {@code Throwable} without losing the detailed original error
47 public class Throwable implements java.io.Serializable {
56 * The cause of this Throwable. Null when there is no cause.
58 private Throwable cause = this;
74 * Constructs a new {@code Throwable} that includes the current stack trace.
78 public Throwable() {
283 Throwable throwable = getCause(); local
320 Throwable throwable = getCause(); local
    [all...]
  /dalvik/vm/
Exception.c 33 with a Throwable at the time the Throwable is constructed. The construction
37 (1) A Throwable is created with a "new Throwable" statement in the
49 because it'll get overwritten as soon as the Throwable constructor starts
79 before the Throwable construction can overwrite the copy in Thread. One
92 in the Throwable).
112 dvmFindSystemClassNoInit("Ljava/lang/Throwable;");
151 LOGE("Unable to find Throwable.stackState\n");
160 LOGE("Unable to find Throwable.detailMessage\n")
793 ClassObject* throwable = local
    [all...]
Thread.c 1696 ClassObject* throwable; local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 152 catch(Throwable throwable)
154 throwable.printStackTrace();
TransformerIdentityImpl.java 489 Throwable throwable = wre.getException(); local
491 while (throwable
494 throwable =
495 ((org.apache.xml.utils.WrappedRuntimeException) throwable).getException();
    [all...]
TransformerImpl.java 652 Throwable throwable = wre.getException(); local
654 while (throwable
657 throwable =
658 ((org.apache.xml.utils.WrappedRuntimeException) throwable).getException();
661 fatalError(throwable);
682 private void fatalError(Throwable throwable) throws TransformerException
684 if (throwable instanceof org.xml.sax.SAXParseException)
685 m_errorHandler.fatalError(new TransformerException(throwable.getMessage(),new SAXSourceLocator((org.xml.sax.SAXParseException)throwable)))
    [all...]
  /prebuilt/common/osgi/
osgi.jar 
  /dalvik/libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /prebuilt/sdk/7/
android.jar 
  /external/emma/lib/
emma.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 

Completed in 449 milliseconds

1 2