HomeSort by relevance Sort by last modified time
    Searched refs:getCause (Results 251 - 275 of 326) sorted by null

<<11121314

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DexWrapper.java 188 while (t.getCause() != null) {
189 t = t.getCause();
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
JCs.java 96 throw ((IOException) th.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 336 while (t2.getCause() != null) {
337 t2 = t.getCause();
364 while (t2.getCause() != null) {
365 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 197 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();
  /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();
  /libcore/luni/src/main/java/java/net/
InetAddress.java 733 if (e.getCause() instanceof ErrnoException) {
735 reached = (((ErrnoException) e.getCause()).errno == ECONNREFUSED);
    [all...]
  /dalvik/dx/src/com/android/dx/gen/
DexGenerator.java 145 throw new RuntimeException(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());
  /frameworks/base/core/java/android/os/
AsyncTask.java 279 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);
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
NativeCryptoTest.java 754 assertEquals(SSLProtocolException.class, expected.getCause().getClass());
811 if (!"expected".equals(e.getCause().getMessage())) {
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DataTruncationTest.java 106 assertEquals(e, dataTruncation.getCause());
107 assertEquals("error message", dataTruncation.getCause().getMessage());
  /external/nist-sip/java/gov/nist/javax/sip/
SipStackImpl.java 641 (Exception) ex1.getCause());
646 (Exception) ex.getCause());
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
DescriptorsTest.java 455 assertTrue(e.getCause() instanceof NumberFormatException);
456 assertTrue(e.getCause().getMessage().indexOf("invalid") != -1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ProjectCallback.java 172 while (e.getCause() != null) {
173 e = e.getCause();
  /sdk/ide_common/src/com/android/ide/common/rendering/
LayoutLibrary.java 207 while (cause.getCause() != null) {
208 cause = cause.getCause();

Completed in 1185 milliseconds

<<11121314