/libcore/luni/src/main/java/java/sql/ |
SQLException.java | 40 public class SQLException extends Exception implements Serializable, Iterable<Throwable> { 105 * cause == null or cause.toString() if cause!=null,and the cause Throwable 106 * object is set to the given cause Throwable object. 109 * the Throwable object for the underlying reason this 114 public SQLException(Throwable theCause) { 120 * the cause Throwable object is set to the given cause Throwable object. 125 * the Throwable object for the underlying reason this 130 public SQLException(String theReason, Throwable theCause) { 137 * and the cause Throwable object is set to the given cause Throwabl [all...] |
/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});
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_16/ |
Test_move_16.java | 47 } catch (Throwable t) { 60 } catch (Throwable t) { 73 } catch (Throwable t) { 86 } catch (Throwable t) { 99 } catch (Throwable t) { 114 } catch (Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_wide_16/ |
Test_move_wide_16.java | 54 } catch (Throwable t) { 67 } catch (Throwable t) { 80 } catch (Throwable t) { 93 } catch (Throwable t) { 106 } catch (Throwable t) { 121 } catch (Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_wide_from16/ |
Test_move_wide_from16.java | 47 } catch (Throwable t) { 60 } catch (Throwable t) { 73 } catch (Throwable t) { 86 } catch (Throwable t) { 99 } catch (Throwable t) { 114 } catch (Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/ |
Test_invoke_direct.java | 87 } catch (Throwable t) { 100 } catch (Throwable t) { 127 } catch (Throwable t) { 140 } catch (Throwable t) { 154 } catch (Throwable t) { 167 } catch (Throwable t) { 183 } catch (Throwable t) { 198 } catch (Throwable t) { 211 } catch (Throwable t) { 250 } catch (Throwable t) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/ |
Test_invoke_direct_range.java | 87 } catch (Throwable t) { 100 } catch (Throwable t) { 127 } catch (Throwable t) { 140 } catch (Throwable t) { 154 } catch (Throwable t) { 167 } catch (Throwable t) { 183 } catch (Throwable t) { 198 } catch (Throwable t) { 211 } catch (Throwable t) { 250 } catch (Throwable t) [all...] |
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
SipSessionListenerProxy.java | 54 } catch (Throwable t) { 70 } catch (Throwable t) { 85 } catch (Throwable t) { 101 } catch (Throwable t) { 116 } catch (Throwable t) { 132 } catch (Throwable t) { 147 } catch (Throwable t) { 163 } catch (Throwable t) { 179 } catch (Throwable t) { 194 } catch (Throwable t) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/fill_array_data/ |
Test_fill_array_data.java | 94 } catch (Throwable t) { 107 } catch (Throwable t) { 120 } catch (Throwable t) { 133 } catch (Throwable t) { 146 } catch (Throwable t) { 159 } catch (Throwable t) { 172 } catch (Throwable t) { 185 } catch (Throwable t) { 199 } catch (Throwable t) { 212 } catch (Throwable t) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_boolean/ |
Test_iget_boolean.java | 76 } catch (Throwable t) { 89 } catch (Throwable t) { 172 } catch (Throwable t) { 186 } catch (Throwable t) { 199 } catch (Throwable t) { 212 } catch (Throwable t) { 225 } catch (Throwable t) { 238 } catch (Throwable t) { 251 } catch (Throwable t) { 295 } catch (Throwable t) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_byte/ |
Test_iget_byte.java | 74 } catch (Throwable t) { 87 } catch (Throwable t) { 170 } catch (Throwable t) { 183 } catch (Throwable t) { 196 } catch (Throwable t) { 209 } catch (Throwable t) { 222 } catch (Throwable t) { 235 } catch (Throwable t) { 248 } catch (Throwable t) { 292 } catch (Throwable t) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_char/ |
Test_iget_char.java | 75 } catch (Throwable t) { 89 } catch (Throwable t) { 173 } catch (Throwable t) { 187 } catch (Throwable t) { 201 } catch (Throwable t) { 215 } catch (Throwable t) { 229 } catch (Throwable t) { 242 } catch (Throwable t) { 255 } catch (Throwable t) { 300 } catch (Throwable t) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget_short/ |
Test_iget_short.java | 76 } catch (Throwable t) { 90 } catch (Throwable t) { 174 } catch (Throwable t) { 188 } catch (Throwable t) { 202 } catch (Throwable t) { 216 } catch (Throwable t) { 230 } catch (Throwable t) { 244 } catch (Throwable t) { 258 } catch (Throwable t) { 302 } catch (Throwable t) [all...] |
/libcore/luni/src/main/java/java/lang/ |
Throwable.java | 35 * circumstances in which the {@code Throwable} was created (basically an error 39 * <p>A {@code Throwable} can also include a cause, which is a nested {@code 40 * Throwable} that represents the original problem that led to this {@code 41 * Throwable}. It is often used for wrapping various types of errors into a 42 * common {@code Throwable} without losing the detailed original error 50 public class Throwable implements java.io.Serializable { 59 * The cause of this Throwable. Null when there is no cause. 61 private Throwable cause = this; 64 * Throwables suppressed by this throwable. Null when suppressed exceptions 67 private List<Throwable> suppressedExceptions = Collections.emptyList() [all...] |
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
JavaBridgeBasicsTest.java | 88 protected String executeJavaScriptAndGetStringResult(String script) throws Throwable { 93 protected void injectObjectAndReload(final Object object, final String name) throws Throwable { 98 final Class<? extends Annotation> requiredAnnotation) throws Throwable { 114 private void assertRaisesException(String script) throws Throwable { 126 public void testTypeOfInjectedObject() throws Throwable { 132 public void testAdditionNotReflectedUntilReload() throws Throwable { 157 public void testRemovalNotReflectedUntilReload() throws Throwable { 182 public void testRemoveObjectNotAdded() throws Throwable { 199 public void testTypeOfMethod() throws Throwable { 206 public void testTypeOfInvalidMethod() throws Throwable { [all...] |
JavaBridgeArrayTest.java | 97 public void testArrayLength() throws Throwable { 108 public void testPassNull() throws Throwable { 115 public void testPassUndefined() throws Throwable { 122 public void testPassEmptyArray() throws Throwable { 131 public void testPassArrayToStringMethod() throws Throwable { 141 public void testPassArrayToNonStringNonArrayMethod() throws Throwable { 149 public void testPassNonArrayToArrayMethod() throws Throwable { 157 public void testObjectWithLengthProperty() throws Throwable { 168 public void testNonNumericLengthProperty() throws Throwable { 177 public void testLengthOutOfBounds() throws Throwable { [all...] |
/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...] |
/cts/tests/tests/opengl/src/android/opengl/cts/ |
AttachShaderTest.java | 47 public void test_glAttachedShaders_validshader() throws Throwable { 61 * @throws Throwable 64 public void test_glAttachedShaders_invalidshader() throws Throwable { 76 * @throws Throwable 79 public void test_glAttachedShaders_attach_same_shader() throws Throwable { 92 * @throws Throwable 95 public void test_glAttachedShaders_noshader() throws Throwable { 104 public void test_glAttachShaders_emptyfragshader_emptyfragshader() throws Throwable { 111 public void test_glAttachShaders_emptyfragshader_emptyvertexshader() throws Throwable { 120 public void test_glAttachShaders_emptyvertexshader_emptyvertexshader() throws Throwable { [all...] |
NativeAttachShaderTest.java | 48 public void test_glAttachedShaders_validshader() throws Throwable { 62 * @throws Throwable 64 public void test_glAttachedShaders_invalidshader() throws Throwable { 76 * @throws Throwable 78 public void test_glAttachedShaders_attach_same_shader() throws Throwable { 90 * @throws Throwable 92 public void test_glAttachedShaders_noshader() throws Throwable { 102 public void test_glAttachShaders_emptyfragshader_emptyfragshader() throws Throwable { 108 public void test_glAttachShaders_emptyfragshader_emptyvertexshader() throws Throwable { 115 public void test_glAttachShaders_emptyvertexshader_emptyvertexshader() throws Throwable { [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/filled_new_array/ |
Test_filled_new_array.java | 60 } catch (Throwable t) { 73 } catch (Throwable t) { 87 } catch (Throwable t) { 100 } catch (Throwable t) { 113 } catch (Throwable t) { 126 } catch (Throwable t) { 139 } catch(Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/filled_new_array_range/ |
Test_filled_new_array_range.java | 60 } catch (Throwable t) { 73 } catch (Throwable t) { 86 } catch (Throwable t) { 99 } catch (Throwable t) { 112 } catch (Throwable t) { 125 } catch (Throwable t) { 138 } catch(Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_eqz/ |
Test_if_eqz.java | 74 } catch (Throwable t) { 88 } catch (Throwable t) { 101 } catch (Throwable t) { 114 } catch (Throwable t) { 127 } catch (Throwable t) { 140 } catch (Throwable t) { 154 } catch (Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_nez/ |
Test_if_nez.java | 79 } catch (Throwable t) { 93 } catch (Throwable t) { 106 } catch (Throwable t) { 120 } catch (Throwable t) { 133 } catch (Throwable t) { 146 } catch (Throwable t) { 159 } catch (Throwable t) {
|
/frameworks/base/services/java/com/android/server/ |
SystemServer.java | 87 void reportWtf(String msg, Throwable e) { 227 new Throwable()); 266 } catch (Throwable e) { 370 } catch (Throwable e) { 378 } catch (Throwable e) { 386 } catch (Throwable e) { 392 } catch (Throwable e) { 415 } catch (Throwable e) { 425 } catch (Throwable e) { 433 } catch (Throwable e) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget/ |
Test_sget.java | 95 } catch (Throwable t) { 109 } catch (Throwable t) { 188 } catch (Throwable t) { 202 } catch (Throwable t) { 216 } catch (Throwable t) { 230 } catch (Throwable t) { 244 } catch (Throwable t) { 258 } catch (Throwable t) { 272 } catch (Throwable t) {
|