Home
last modified time | relevance | path

Searched refs:firstException (Results 1 – 6 of 6) sorted by relevance

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
DRouteExceptionTest.java27 IOException firstException = new IOException(); in getConnectionIOException_single() local
28 RouteException re = new RouteException(firstException); in getConnectionIOException_single()
29 assertSame(firstException, re.getLastConnectException()); in getConnectionIOException_single()
33 IOException firstException = new IOException(); in getConnectionIOException_multiple() local
36 RouteException re = new RouteException(firstException); in getConnectionIOException_multiple()
46 assertSame(firstException, secondSuppressedException[0]); in getConnectionIOException_multiple()
/external/grpc-grpc-java/testing/src/main/java/io/grpc/testing/
DGrpcCleanupRule.java54 private Throwable firstException; field in GrpcCleanupRule
127 firstException = t; in apply()
139 if (firstException != null) { in apply()
140 throw firstException; in apply()
152 if (firstException == null) {
159 if (firstException != null) {
168 firstException = new AssertionError(
173 firstException = e;
176 if (firstException != null) {
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DCycleDetectingLockFactoryTest.java103 PotentialDeadlockException firstException = null; in testDeadlock_twoLocks() local
110 firstException = expected; in testDeadlock_twoLocks()
120 assertSame(firstException.getCause(), expected.getCause()); in testDeadlock_twoLocks()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DCycleDetectingLockFactoryTest.java103 PotentialDeadlockException firstException = null; in testDeadlock_twoLocks() local
110 firstException = expected; in testDeadlock_twoLocks()
120 assertSame(firstException.getCause(), expected.getCause()); in testDeadlock_twoLocks()
/external/javapoet/src/main/java/com/squareup/javapoet/
DMethodSpec.java117 boolean firstException = true; in emit()
119 if (!firstException) codeWriter.emit(","); in emit()
121 firstException = false; in emit()
/external/guice/core/test/com/google/inject/
DScopesTest.java1200 Throwable firstException = null;
1207 firstException = e.getCause();
1224 errors.addAll(((ProvisionException) firstException).getErrorMessages());