/external/guava/guava/src/com/google/common/base/ |
D | Throwables.java | 60 public static <X extends Throwable> void propagateIfInstanceOf( in propagateIfInstanceOf() 82 public static void propagateIfPossible(@Nullable Throwable throwable) { in propagateIfPossible() 106 public static <X extends Throwable> void propagateIfPossible( in propagateIfPossible() 127 void propagateIfPossible(@Nullable Throwable throwable, in propagateIfPossible() 158 public static RuntimeException propagate(Throwable throwable) { in propagate() 172 public static Throwable getRootCause(Throwable throwable) { in getRootCause() 198 public static List<Throwable> getCausalChain(Throwable throwable) { in getCausalChain() 215 public static String getStackTraceAsString(Throwable throwable) { in getStackTraceAsString()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | LogTest.java | 29 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/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowLog.java | 22 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/ |
D | ThrowableWrapper.java | 22 private final Throwable throwable; field in ThrowableWrapper 24 public ThrowableWrapper(final Throwable throwable) { in ThrowableWrapper()
|
D | ReplayState.java | 99 public void andThrow(Throwable throwable) { in andThrow() 115 public void andStubThrow(Throwable throwable) { in andStubThrow() 149 public void setDefaultThrowable(Throwable throwable) { in setDefaultThrowable()
|
D | IMocksControlState.java | 28 void andThrow(Throwable throwable); in andThrow() 36 void andStubThrow(Throwable throwable); in andStubThrow()
|
D | ILegacyMethods.java | 21 void setDefaultThrowable(Throwable throwable); in setDefaultThrowable()
|
/external/junit-params/src/main/java/junitparams/internal/ |
D | DeferredErrorFrameworkMethod.java | 15 private final Throwable throwable; field in DeferredErrorFrameworkMethod 18 Throwable throwable) { in DeferredErrorFrameworkMethod()
|
/external/easymock/src/org/easymock/ |
D | MockControl.java | 166 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()
|
D | IExpectationSetters.java | 43 IExpectationSetters<T> andThrow(Throwable throwable); in andThrow() 82 void andStubThrow(Throwable throwable); in andStubThrow()
|
/external/guice/core/src/com/google/inject/internal/ |
D | Exceptions.java | 34 public static RuntimeException rethrowCause(Throwable throwable) { in rethrowCause() 43 public static RuntimeException rethrow(Throwable throwable) { in rethrow()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/ |
D | TestErrorException.java | 60 public TestErrorException(String message, Throwable throwable) { in TestErrorException() 69 public TestErrorException(Throwable throwable) { in TestErrorException()
|
D | LogWriter.java | 76 public abstract void printError(String message, Throwable throwable); in printError() 83 public abstract void printError(Throwable throwable); in printError()
|
/external/mockito/src/main/java/org/mockito/internal/stubbing/answers/ |
D | ThrowsException.java | 20 private final Throwable throwable; field in ThrowsException 23 public ThrowsException(Throwable throwable) { in ThrowsException()
|
/external/dagger2/producers/src/main/java/dagger/producers/ |
D | Produced.java | 74 public static <T> Produced<T> failed(Throwable throwable) { in failed() 106 private final Throwable throwable; field in Produced.Failed 108 private Failed(Throwable throwable) { in Failed()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/ |
D | JPDALogWriter.java | 128 public void printError(String message, Throwable throwable) { in printError() 132 logStream.printStackTrace(getErrorPrefix() + message, throwable); in printError() local 142 public void printError(Throwable throwable) { in printError() 260 Throwable throwable) { in printStackTrace()
|
/external/vogar/src/vogar/target/junit/ |
D | ErrorRunner.java | 39 private final Throwable throwable; field in ErrorRunner 41 public ErrorRunner(Description description, Throwable throwable) { in ErrorRunner()
|
/external/desugar/java/com/google/devtools/common/options/ |
D | OptionsParsingException.java | 34 public OptionsParsingException(String message, Throwable throwable) { in OptionsParsingException() 38 public OptionsParsingException(String message, String argument, Throwable throwable) { in OptionsParsingException()
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/ |
D | XLogger.java | 157 public <T extends Throwable> T throwing(T throwable) { in throwing() 172 public <T extends Throwable> T throwing(Level level, T throwable) { in throwing() 185 public void catching(Throwable throwable) { in catching() 199 public void catching(Level level, Throwable throwable) { in catching()
|
/external/vogar/src/vogar/target/junit/junit3/ |
D | TestCaseRunnerFactory.java | 81 Class<? extends Test> testClass, String name, Throwable throwable) { in createFailingTest() 157 private final Throwable throwable; field in TestCaseRunnerFactory.ThrowingStatement 159 public ThrowingStatement(Description description, Throwable throwable) { in ThrowingStatement()
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
D | FormattingTuple.java | 37 private Throwable throwable; field in FormattingTuple 44 public FormattingTuple(String message, Object[] argArray, Throwable throwable) { in FormattingTuple()
|
/external/mockito/src/main/java/org/mockito/internal/handler/ |
D | NotifiedMethodInvocationReport.java | 19 private final Throwable throwable; field in NotifiedMethodInvocationReport 42 public NotifiedMethodInvocationReport(Invocation invocation, Throwable throwable) { in NotifiedMethodInvocationReport()
|
/external/mockito/src/main/java/org/mockito/internal/exceptions/ |
D | ExceptionIncludingMockitoWarnings.java | 10 public ExceptionIncludingMockitoWarnings(String message, Throwable throwable) { in ExceptionIncludingMockitoWarnings()
|
/external/droiddriver/src/io/appium/droiddriver/exceptions/ |
D | UnrecoverableException.java | 32 public UnrecoverableException(Throwable throwable) { in UnrecoverableException()
|
/external/mockito/src/main/java/org/mockito/internal/exceptions/stacktrace/ |
D | ConditionalStackTraceFilter.java | 19 public void filter(Throwable throwable) { in filter()
|