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

<<111213141516

  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingTestCase.java 136 throw ex.getCause();
  /external/guava/guava-tests/test/com/google/common/testing/
GcFinalizationTest.java 108 assertTrue(e.getCause() instanceof InterruptedException);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTransformAsyncFunctionTest.java 169 assertSame(RuntimeException.class, e.getCause().getClass());
AbstractExecutionThreadServiceTest.java 177 assertEquals("kaboom!", expected.getCause().getMessage());
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
JCs.java 96 throw ((IOException) th.getCause());
  /external/junit/src/org/junit/internal/runners/
JUnit4ClassRunner.java 91 testAborted(notifier, description, e.getCause());
  /frameworks/base/core/java/android/util/
Log.java 314 t = t.getCause();
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 345 while (t2.getCause() != null) {
346 t2 = t.getCause();
373 while (t2.getCause() != null) {
374 t2 = t.getCause();
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
IntegrationTestUtils.java 100 throw e.getCause();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
BuildPreferencePage.java 198 Throwable cause = t.getCause();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
AndroidJarLoaderTest.java 95 throw (Exception)e.getCause();
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 339 assertTrue(expected.getCause() instanceof SomeCheckedException);
419 assertTrue(e.getCause() instanceof SomeOtherCheckedException);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 346 while (t.getCause() != null) {
347 t = t.getCause();
515 while (t.getCause() != null) {
516 t = t.getCause();
598 while (t.getCause() != null) {
599 t = t.getCause();
    [all...]
  /frameworks/base/core/java/android/app/
ApplicationErrorReport.java 336 while (tr.getCause() != null) {
337 tr = tr.getCause();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardSwitcher.java 151 Log.w(TAG, "loading keyboard failed: " + e.mKeyboardId, e.getCause());
152 LatinImeLogger.logOnException(e.mKeyboardId.toString(), e.getCause());
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
TrustManagerFactory2Test.java 107 assertTrue("Incorrect exception", e.getCause() instanceof KeyStoreException);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMException.java 72 * @see #getCause
83 public Throwable getCause() {
102 * {@link #getCause()} method). (A <tt>null</tt> value is
326 Throwable.class.getMethod("getCause", (Class<?>) null);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathBuilderSpi.java 112 throw new CertPathBuilderException(certPathException.getMessage(), certPathException.getCause());
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ReflectionUtils.java 232 throw propagate(e.getCause());
  /external/guava/guava/src/com/google/common/eventbus/
EventBus.java 356 throw Throwables.propagate(e.getCause());
  /frameworks/base/core/java/android/os/
AsyncTask.java 300 e.getCause());
  /frameworks/support/v4/java/android/support/v4/content/
ModernAsyncTask.java 138 e.getCause());
  /libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
AnnotationMember.java 298 throw new TypeNotPresentException(tnpe.typeName(), tnpe.getCause());
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
InvocationTargetExceptionTest.java 193 * java.lang.reflect.InvocationTargetException#getCause()
196 // java.lang.reflect.InvocationTargetException.getCause()
205 e.getCause() instanceof NullPointerException);
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
TrustManagerFactory2Test.java 104 assertTrue("Incorrect exception", e.getCause() instanceof KeyStoreException);

Completed in 617 milliseconds

<<111213141516