Home
last modified time | relevance | path

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

12

/external/guava/guava/src/com/google/common/base/
DThrowables.java56 public static <X extends Throwable> void propagateIfInstanceOf( in propagateIfInstanceOf()
78 public static void propagateIfPossible(@Nullable Throwable throwable) { in propagateIfPossible()
102 public static <X extends Throwable> void propagateIfPossible( in propagateIfPossible()
123 void propagateIfPossible(@Nullable Throwable throwable, in propagateIfPossible()
154 public static RuntimeException propagate(Throwable throwable) { in propagate()
168 public static Throwable getRootCause(Throwable throwable) { in getRootCause()
194 public static List<Throwable> getCausalChain(Throwable throwable) { in getCausalChain()
211 public static String getStackTraceAsString(Throwable throwable) { in getStackTraceAsString()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DLogTest.java29 Throwable throwable = new Throwable(); in d_shouldLogAppropriately_withThrowable() local
45 Throwable throwable = new Throwable(); in e_shouldLogAppropriately_withThrowable() local
61 Throwable throwable = new Throwable(); in i_shouldLogAppropriately_withThrowable() local
77 Throwable throwable = new Throwable(); in v_shouldLogAppropriately_withThrowable() local
93 Throwable throwable = new Throwable(); in w_shouldLogAppropriately_withThrowable() local
102 Throwable throwable = new Throwable(); in w_shouldLogAppropriately_withJustThrowable() local
116 Throwable throwable = new Throwable(); in wtf_shouldLogAppropriately_withThrowable() local
166 private void assertLogged(int type, String tag, String msg, Throwable throwable) { in assertLogged()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowLog.java22 public static void e(String tag, String msg, Throwable throwable) { in e()
32 public static void d(String tag, String msg, Throwable throwable) { in d()
42 public static void i(String tag, String msg, Throwable throwable) { in i()
52 public static void v(String tag, String msg, Throwable throwable) { in v()
62 public static void w(String tag, Throwable throwable) { in w()
68 public static void w(String tag, String msg, Throwable throwable) { in w()
78 public static void wtf(String tag, String msg, Throwable throwable) { in wtf()
87 private static void addLog(int level, String tag, String msg, Throwable throwable) { in addLog()
95 …e static void logToStream(PrintStream ps, int level, String tag, String msg, Throwable throwable) { in logToStream()
124 public final Throwable throwable; field in ShadowLog.LogItem
[all …]
/external/easymock/src/org/easymock/internal/
DThrowableWrapper.java22 private final Throwable throwable; field in ThrowableWrapper
24 public ThrowableWrapper(final Throwable throwable) { in ThrowableWrapper()
DReplayState.java99 public void andThrow(Throwable throwable) { in andThrow()
115 public void andStubThrow(Throwable throwable) { in andStubThrow()
149 public void setDefaultThrowable(Throwable throwable) { in setDefaultThrowable()
DIMocksControlState.java28 void andThrow(Throwable throwable); in andThrow()
36 void andStubThrow(Throwable throwable); in andStubThrow()
DILegacyMethods.java21 void setDefaultThrowable(Throwable throwable); in setDefaultThrowable()
DMocksControl.java150 public IExpectationSetters<Object> andThrow(Throwable throwable) { in andThrow()
185 public void andStubThrow(Throwable throwable) { in andStubThrow()
308 public void setLegacyDefaultThrowable(Throwable throwable) { in setLegacyDefaultThrowable()
DRecordState.java103 public void andThrow(Throwable throwable) { in andThrow()
172 public void andStubThrow(Throwable throwable) { in andStubThrow()
183 public void setDefaultThrowable(Throwable throwable) { in setDefaultThrowable()
299 private void requireValidThrowable(Throwable throwable) { in requireValidThrowable()
350 private boolean isValidThrowable(Throwable throwable) { in isValidThrowable()
/external/easymock/src/org/easymock/
DMockControl.java166 public void setThrowable(Throwable throwable) { in setThrowable()
223 public void setThrowable(Throwable throwable, int times) { in setThrowable()
298 public void setDefaultThrowable(Throwable throwable) { in setDefaultThrowable()
376 public void setThrowable(Throwable throwable, int minCount, int maxCount) { in setThrowable()
382 public void setThrowable(Throwable throwable, Range range) { in setThrowable()
549 public void expectAndThrow(Object ignored, Throwable throwable) { in expectAndThrow()
563 public void expectAndThrow(Object ignored, Throwable throwable, Range range) { in expectAndThrow()
579 public void expectAndThrow(Object ignored, Throwable throwable, int count) { in expectAndThrow()
594 public void expectAndThrow(Object ignored, Throwable throwable, int min, in expectAndThrow()
623 public void expectAndDefaultThrow(Object ignored, Throwable throwable) { in expectAndDefaultThrow()
DIExpectationSetters.java43 IExpectationSetters<T> andThrow(Throwable throwable); in andThrow()
82 void andStubThrow(Throwable throwable); in andStubThrow()
/external/mockito/src/org/mockito/internal/stubbing/answers/
DThrowsException.java17 private final Throwable throwable; field in ThrowsException
20 public ThrowsException(Throwable throwable) { in ThrowsException()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
DTestErrorException.java60 public TestErrorException(String message, Throwable throwable) { in TestErrorException()
69 public TestErrorException(Throwable throwable) { in TestErrorException()
DLogWriter.java76 public abstract void printError(String message, Throwable throwable); in printError()
83 public abstract void printError(Throwable throwable); in printError()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
DJPDALogWriter.java125 public void printError(String message, Throwable throwable) { in printError()
129 logStream.printStackTrace(getErrorPrefix() + message, throwable); in printError() local
138 public void printError(Throwable throwable) { in printError()
254 Throwable throwable) { in printStackTrace()
/external/mockito/src/org/mockito/internal/listeners/
DNotifiedMethodInvocationReport.java17 private Throwable throwable; field in NotifiedMethodInvocationReport
39 public NotifiedMethodInvocationReport(Invocation invocation, Throwable throwable) { in NotifiedMethodInvocationReport()
/external/mockito/src/org/mockito/internal/stubbing/
DBaseStubbing.java30 private OngoingStubbing<T> thenThrow(Throwable throwable) { in thenThrow()
76 public DeprecatedOngoingStubbing<T> toThrow(Throwable throwable) { in toThrow()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DMoreExecutorsTest.java89 Throwable throwable = throwableFromOtherThread.get(); in testSameThreadExecutorServiceInThreadExecution() local
199 Throwable throwable = throwableFromOtherThread.get(); in testSameThreadExecutorServiceTermination() local
/external/mockito/src/org/mockito/internal/exceptions/
DExceptionIncludingMockitoWarnings.java10 public ExceptionIncludingMockitoWarnings(String message, Throwable throwable) { in ExceptionIncludingMockitoWarnings()
/external/droiddriver/src/com/google/android/droiddriver/exceptions/
DUnrecoverableException.java32 public UnrecoverableException(Throwable throwable) { in UnrecoverableException()
/external/mockito/src/org/mockito/internal/exceptions/stacktrace/
DConditionalStackTraceFilter.java19 public void filter(Throwable throwable) { in filter()
/external/guava/guava/src/com/google/common/util/concurrent/
DSettableFuture.java67 public boolean setException(Throwable throwable) { in setException()
/external/mockito/src/org/mockito/stubbing/
DVoidMethodStubbable.java43 VoidMethodStubbable<T> toThrow(Throwable throwable); in toThrow()
DDeprecatedOngoingStubbing.java63 DeprecatedOngoingStubbing<T> toThrow(Throwable throwable); in toThrow()
/external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
DProcessInitException.java24 public ProcessInitException(int errorCode, Throwable throwable) { in ProcessInitException()

12