HomeSort by relevance Sort by last modified time
    Searched refs:getCause (Results 226 - 250 of 394) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
DynamicProxy.java 56 throw e.getCause();
  /sdk/lint/cli/src/com/android/tools/lint/
LintCliXmlParser.java 55 e.getCause() != null ? e.getCause().getLocalizedMessage() :
63 e.getCause() != null ? e.getCause().getLocalizedMessage() :
  /external/guava/guava/src/com/google/common/base/
Throwables.java 170 while ((cause = throwable.getCause()) != null) {
199 throwable = throwable.getCause();
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 121 assertSame(exception, expected.getCause());
159 assertSame(exception, expected.getCause());
297 if (!expectedExceptionClass.isInstance(expected.getCause())) {
298 throw expected.getCause();
607 assertSame(exception, e.getCause());
620 assertSame(exception, e.getCause());
634 assertSame(exception, e.getCause());
    [all...]
AbstractFutureTest.java 59 assertSame(failure, ee1.getCause());
60 assertSame(failure, ee2.getCause());
ListenableFutureTester.java 104 assertEquals(message, e.getCause().getMessage());
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
SQLWarningTest.java 358 assertEquals(e, exception.getCause());
359 assertEquals("error", exception.getCause().getMessage());
370 assertEquals(e, exception.getCause());
371 assertEquals("error", exception.getCause().getMessage());
383 assertEquals(e, exception.getCause());
384 assertEquals("error", exception.getCause().getMessage());
397 assertEquals(e, exception.getCause());
398 assertEquals("error", exception.getCause().getMessage());
SQLClientInfoExceptionTest.java 94 cause, sqlClientInfoException.getCause());
155 cause, sqlClientInfoException.getCause());
206 cause, sqlClientInfoException.getCause());
233 cause, sqlClientInfoException.getCause());
SQLExceptionTest.java 547 assertEquals(e, exception.getCause());
548 assertEquals("error", exception.getCause().getMessage());
559 assertEquals(e, exception.getCause());
560 assertEquals("error", exception.getCause().getMessage());
572 assertEquals(e, exception.getCause());
573 assertEquals("error", exception.getCause().getMessage());
586 assertEquals(e, exception.getCause());
587 assertEquals("error", exception.getCause().getMessage());
  /frameworks/base/core/java/android/util/
ReflectiveProperty.java 122 throw new RuntimeException(e.getCause());
143 throw new RuntimeException(e.getCause());
  /libcore/luni/src/main/java/java/security/cert/
CertStore.java 106 Throwable th = e.getCause();
184 Throwable th = e.getCause();
  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
TrustManagerFactorySpiTests.java 84 assertTrue("Incorrect exception", e.getCause() instanceof KeyStoreException);
  /external/guava/guava/src/com/google/common/cache/
AbstractLoadingCache.java 54 throw new UncheckedExecutionException(e.getCause());
RemovalNotification.java 54 public RemovalCause getCause() {
  /external/nist-sip/java/gov/nist/javax/sip/header/
Reason.java 70 public int getCause() {
  /libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 217 if (initThr.getCause() == null) {
218 assertNull(dserThr.getCause());
220 assertNotNull(dserThr.getCause());
221 THROWABLE_COMPARATOR.assertDeserialized(initThr.getCause(),
222 dserThr.getCause());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThrowableTest.java 34 assertNull(e.getCause());
43 assertNull(e.getCause());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
InvocationTargetExceptionTest.java 252 assertNull(e.getCause());
267 assertNull(e.getCause());
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DefaultErrorHandler.java 299 cause = ((TransformerException)cause).getCause();
339 cause = ((TransformerException)cause).getCause();
  /dalvik/tests/086-null-super/src/
Main.java 156 Throwable cause = ite.getCause();
  /dalvik/tests/087-gc-after-link/src/
Main.java 165 Throwable cause = ite.getCause();
  /external/easymock/src/org/easymock/internal/
Result.java 86 throw e.getCause();
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventHandlerTest.java 93 e.getCause() instanceof IntentionalException);
  /external/guava/guava-tests/test/com/google/common/net/
HostSpecifierTest.java 115 assertTrue(expected.getCause() instanceof IllegalArgumentException);
  /external/junit/src/org/junit/internal/runners/
ErrorReportingRunner.java 40 return getCauses(cause.getCause());

Completed in 1415 milliseconds

1 2 3 4 5 6 7 8 91011>>