HomeSort by relevance Sort by last modified time
    Searched full:throwable (Results 451 - 475 of 3684) sorted by null

<<11121314151617181920>>

  /external/mockito/src/org/mockito/listeners/
MethodInvocationReport.java 35 * @return The throwable raised by the method invocation, maybe <code>null</code>
37 Throwable getThrowable();
  /external/objenesis/main/src/org/objenesis/
ObjenesisException.java 42 public ObjenesisException(Throwable cause) {
53 public ObjenesisException(String msg, Throwable cause) {
  /external/proguard/src/proguard/
ParseException.java 43 * retrieved by the <code>{@link Throwable#getMessage}</code>
44 * method of class <code>Throwable</code>.
  /frameworks/base/core/java/android/content/
OperationApplicationException.java 34 public OperationApplicationException(String message, Throwable cause) {
38 public OperationApplicationException(Throwable cause) {
  /frameworks/base/core/tests/coretests/src/android/view/
ViewAttachTest.java 43 * @throws Throwable
45 public void testAttached() throws Throwable {
  /frameworks/base/core/tests/utillib/src/android/test/
BandwidthTestCase.java 41 protected void runTest() throws Throwable {
76 final Throwable[] exceptions = new Throwable[1];
81 } catch (Throwable throwable) {
82 exceptions[0] = throwable;
116 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable {
118 Throwable exception = null;
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
constructors_index_additions.html 77 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(int[], java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
78 (<code>int[], Throwable</code>)</A></nobr>&nbsp;constructor<br>
79 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(java.lang.String, int[], java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
80 (<code>String, int[], Throwable</code>)</A></nobr>&nbsp;constructor<br>
81 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(java.lang.String, java.lang.String, int, int[], java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
82 (<code>String, String, int, int[], Throwable</code>)</A></nobr>&nbsp;constructor<br>
83 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(java.lang.String, java.lang.String, int[], java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
84 (<code>String, String, int[], Throwable</code>)</A></nobr>&nbsp;constructor<br>
85 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
86 (<code>Throwable</code>)</A></nobr>&nbsp;constructor<br
    [all...]
constructors_index_all.html 81 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(int[], java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
82 (<code>int[], Throwable</code>)</A></nobr>&nbsp;constructor<br>
83 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(java.lang.String, int[], java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
84 (<code>String, int[], Throwable</code>)</A></nobr>&nbsp;constructor<br>
85 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(java.lang.String, java.lang.String, int, int[], java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
86 (<code>String, String, int, int[], Throwable</code>)</A></nobr>&nbsp;constructor<br>
87 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(java.lang.String, java.lang.String, int[], java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
88 (<code>String, String, int[], Throwable</code>)</A></nobr>&nbsp;constructor<br>
89 &nbsp;&nbsp;<nobr><A HREF="java.sql.BatchUpdateException.html#java.sql.BatchUpdateException.ctor_added(java.lang.Throwable)" class="hiddenlink" target="rightframe"><b>BatchUpdateException</b>
90 (<code>Throwable</code>)</A></nobr>&nbsp;constructor<br
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/
MmsException.java 47 public MmsException(Throwable cause) {
57 public MmsException(String message, Throwable cause) {
  /frameworks/volley/src/com/android/volley/
VolleyError.java 39 public VolleyError(String exceptionMessage, Throwable reason) {
44 public VolleyError(Throwable cause) {
  /libcore/luni/src/main/java/java/lang/
ReflectiveOperationException.java 43 public ReflectiveOperationException(Throwable cause) {
50 public ReflectiveOperationException(String message, Throwable cause) {
  /libcore/luni/src/main/java/java/net/
SocketException.java 46 public SocketException(Throwable cause) {
54 public SocketException(String detailMessage, Throwable cause) {
SocketTimeoutException.java 47 public SocketTimeoutException(Throwable cause) {
55 public SocketTimeoutException(String detailMessage, Throwable cause) {
  /libcore/luni/src/main/java/javax/net/ssl/
SSLHandshakeException.java 39 public SSLHandshakeException(Throwable cause) {
47 public SSLHandshakeException(String reason, Throwable cause) {
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConfigurationException.java 42 private Throwable causeOnJDK13OrBelow;
74 public DatatypeConfigurationException(String message, Throwable cause) {
86 public DatatypeConfigurationException(Throwable cause) {
141 private void initCauseByReflection(Throwable cause) {
144 Method m = this.getClass().getMethod("initCause", new Class[] {Throwable.class});
157 Throwable cause = (Throwable) m1.invoke(this, new Object[] {});
162 Method m2 = this.getClass().getMethod("initCause", new Class[] {Throwable.class});
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementSetAttributeNS.java 52 * @throws Throwable
55 public void testSetAttributeNS1() throws Throwable {
72 public void testSetAttributeNS2() throws Throwable {
93 public void testSetAttributeNS3() throws Throwable {
116 public void testSetAttributeNS4() throws Throwable {
149 public void testSetAttributeNS5() throws Throwable {
168 public void testSetAttributeNS8() throws Throwable {
197 public void testSetAttributeNSURINull() throws Throwable {
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
Log.java 28 public static void d(final String tag, final String message, final Throwable e) {
34 public static void e(final String tag, final String message, final Throwable e) {
  /cts/tests/tests/media/src/android/media/cts/
StreamingMediaPlayerTest.java 123 public void testPlayMp3Stream1() throws Throwable {
126 public void testPlayMp3Stream2() throws Throwable {
129 public void testPlayMp3StreamRedirect() throws Throwable {
132 public void testPlayMp3StreamNoLength() throws Throwable {
135 public void testPlayOggStream() throws Throwable {
138 public void testPlayOggStreamRedirect() throws Throwable {
141 public void testPlayOggStreamNoLength() throws Throwable {
144 public void testPlayMp3Stream1Ssl() throws Throwable {
149 throws Throwable {
204 throws Throwable {
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwContentsTest.java 109 public void testCreateDestroy() throws Throwable {
116 public void testCreateLoadPageDestroy() throws Throwable {
128 public void testCreateLoadDestroyManyTimes() throws Throwable {
141 public void testCreateLoadDestroyManyAtOnce() throws Throwable {
157 public void testCreateAndGcManyTimes() throws Throwable {
198 throws Throwable, InterruptedException {
223 public void testDocumentHasImages() throws Throwable {
246 public void testClearCacheMemoryAndDisk() throws Throwable {
299 public void testClearCacheInQuickSuccession() throws Throwable {
316 public void testGetFavicon() throws Throwable {
    [all...]
LoadDataWithBaseUrlTest.java 47 final String baseUrl, final String historyUrl) throws Throwable {
91 public void testImageLoad() throws Throwable {
114 public void testScriptLoad() throws Throwable {
134 public void testSameOrigin() throws Throwable {
153 public void testCrossOrigin() throws Throwable {
174 public void testNullBaseUrl() throws Throwable {
184 public void testloadDataWithBaseUrlCallsOnPageStarted() throws Throwable {
197 public void testHistoryUrl() throws Throwable {
215 public void testOnPageFinishedUrlIsBaseUrl() throws Throwable {
227 public void testHistoryUrlIgnoredWithDataSchemeBaseUrl() throws Throwable {
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/and_int/
Test_and_int.java 77 } catch (Throwable t) {
90 } catch (Throwable t) {
103 } catch (Throwable t) {
116 } catch (Throwable t) {
129 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/and_int_2addr/
Test_and_int_2addr.java 76 } catch (Throwable t) {
89 } catch (Throwable t) {
102 } catch (Throwable t) {
115 } catch (Throwable t) {
128 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/and_int_lit16/
Test_and_int_lit16.java 79 } catch (Throwable t) {
92 } catch (Throwable t) {
105 } catch (Throwable t) {
118 } catch (Throwable t) {
132 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/and_int_lit8/
Test_and_int_lit8.java 79 } catch (Throwable t) {
92 } catch (Throwable t) {
105 } catch (Throwable t) {
118 } catch (Throwable t) {
132 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/and_long/
Test_and_long.java 77 } catch (Throwable t) {
90 } catch (Throwable t) {
103 } catch (Throwable t) {
116 } catch (Throwable t) {
130 } catch (Throwable t) {

Completed in 1012 milliseconds

<<11121314151617181920>>