HomeSort by relevance Sort by last modified time
    Searched refs:Throwable (Results 151 - 175 of 2815) sorted by null

1 2 3 4 5 67 8 91011>>

  /libcore/luni/src/main/java/java/security/spec/
InvalidKeySpecException.java 58 public InvalidKeySpecException(String message, Throwable cause) {
68 public InvalidKeySpecException(Throwable cause) {
  /libcore/luni/src/main/java/java/util/
ConcurrentModificationException.java 55 public ConcurrentModificationException(String detailMessage, Throwable cause) {
63 public ConcurrentModificationException(Throwable cause) {
  /libcore/luni/src/main/java/java/util/concurrent/
ExecutionException.java 24 * initialized by a call to {@link #initCause(Throwable) initCause}.
31 * initialized by a call to {@link #initCause(Throwable) initCause}.
47 public ExecutionException(String message, Throwable cause) {
60 public ExecutionException(Throwable cause) {
RejectedExecutionException.java 22 * initialized by a call to {@link #initCause(Throwable) initCause}.
30 * #initCause(Throwable) initCause}.
46 public RejectedExecutionException(String message, Throwable cause) {
59 public RejectedExecutionException(Throwable cause) {
  /libcore/luni/src/main/java/java/util/prefs/
InvalidPreferencesFormatException.java 42 * a detailed exception message and a nested {@code Throwable}.
47 * the nested {@code Throwable}.
49 public InvalidPreferencesFormatException (String s, Throwable t) {
55 * a nested {@code Throwable}.
58 * the nested {@code Throwable}.
60 public InvalidPreferencesFormatException (Throwable t) {
  /libcore/luni/src/main/java/javax/net/ssl/
SSLException.java 46 public SSLException(String message, Throwable cause) {
57 public SSLException(Throwable cause) {
SSLHandshakeException.java 39 public SSLHandshakeException(Throwable cause) {
47 public SSLHandshakeException(String reason, Throwable cause) {
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOExceptionWithCause.java 23 * Subclasses IOException with the {@link Throwable} constructors missing before Java 6. If you are using Java 6,
40 * As specified in {@link Throwable}, the message in the given <code>cause</code> is not used in this instance's
49 public IOExceptionWithCause(String message, Throwable cause) {
58 * and message of <code>cause</code>. This constructor is useful for call sites that just wrap another throwable.
64 public IOExceptionWithCause(Throwable cause) {
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsException.java 23 public ItsException(Throwable cause) {
27 public ItsException(String message, Throwable cause) {
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
WebViewAsynchronousFindApisTest.java 18 public void testFindAllFinds() throws Throwable {
24 public void testFindAllDouble() throws Throwable {
31 public void testFindAllDoubleNext() throws Throwable {
39 public void testFindAllDoesNotFind() throws Throwable {
45 public void testFindAllEmptyPage() throws Throwable {
51 public void testFindAllEmptyString() throws Throwable {
57 public void testFindNextForward() throws Throwable {
68 public void testFindNextBackward() throws Throwable {
79 public void testFindNextBig() throws Throwable {
93 public void testFindAllEmptyNext() throws Throwable {
    [all...]
  /frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
JavaBridgeArrayTest.java 109 public void testArrayLength() throws Throwable {
118 public void testPassNull() throws Throwable {
123 public void testPassUndefined() throws Throwable {
128 public void testPassEmptyArray() throws Throwable {
135 public void testPassArrayToStringMethod() throws Throwable {
143 public void testPassArrayToNonStringNonArrayMethod() throws Throwable {
149 public void testPassNonArrayToArrayMethod() throws Throwable {
155 public void testObjectWithLengthProperty() throws Throwable {
164 public void testNonNumericLengthProperty() throws Throwable {
171 public void testLengthOutOfBounds() throws Throwable {
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_wide/
Test_move_wide.java 48 } catch (Throwable t) {
61 } catch (Throwable t) {
74 } catch (Throwable t) {
87 } catch (Throwable t) {
102 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/verify/b2/
Test_b2.java 32 } catch (Throwable t) {
45 } catch (Throwable t) {
58 } catch (Throwable t) {
71 } catch (Throwable t) {
84 } catch (Throwable t) {
  /external/junit/src/org/junit/internal/runners/statements/
RunAfters.java 27 public void evaluate() throws Throwable {
28 List<Throwable> errors = new ArrayList<Throwable>();
31 } catch (Throwable e) {
37 } catch (Throwable e) {
  /external/mockito/src/org/mockito/internal/stubbing/answers/
ThrowsException.java 17 private final Throwable throwable; field in class:ThrowsException
20 public ThrowsException(Throwable throwable) {
21 this.throwable = throwable;
24 public Object answer(InvocationOnMock invocation) throws Throwable {
25 if (new MockUtil().isMock(throwable)) {
26 throw throwable;
28 Throwable t = throwable.fillInStackTrace();
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/sasl/
SaslException.java 29 private Throwable _exception;
39 public SaslException(String detail, Throwable ex) {
48 public Throwable getCause() {
53 public Throwable initCause(Throwable cause) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_result/
Test_move_result.java 40 } catch (Throwable t) {
54 } catch (Throwable t) {
67 } catch (Throwable t) {
83 } catch (Throwable t) {
97 } catch (Throwable t) {
111 } catch (Throwable t) {
124 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_result_object/
Test_move_result_object.java 51 } catch (Throwable t) {
65 } catch (Throwable t) {
78 } catch (Throwable t) {
94 } catch (Throwable t) {
108 } catch (Throwable t) {
122 } catch (Throwable t) {
135 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_result_wide/
Test_move_result_wide.java 40 } catch (Throwable t) {
54 } catch (Throwable t) {
67 } catch (Throwable t) {
83 } catch (Throwable t) {
97 } catch (Throwable t) {
111 } catch (Throwable t) {
124 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/goto_16/
Test_goto_16.java 41 } catch (Throwable t) {
54 } catch (Throwable t) {
67 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/goto_32/
Test_goto_32.java 41 } catch (Throwable t) {
54 } catch (Throwable t) {
68 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_goto/
Test_opc_goto.java 41 } catch (Throwable t) {
54 } catch (Throwable t) {
67 } catch (Throwable t) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/sparse_switch/
Test_sparse_switch.java 75 } catch (Throwable t) {
90 } catch (Throwable t) {
103 } catch (Throwable t) {
116 } catch (Throwable t) {
129 } catch (Throwable t) {
142 } catch (Throwable t) {
155 } catch (Throwable t) {
169 } catch (Throwable t) {
182 } catch (Throwable t) {
195 } catch (Throwable t)
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
LoadLocaleProviderTestHelper.java 24 private Throwable throwable; field in class:LoadLocaleProviderTestHelper
35 public Throwable getThrowable() {
36 return throwable;
42 } catch (Throwable t) {
43 throwable = t;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMConfigurationException.java 56 public DTMConfigurationException(Throwable e) {
67 public DTMConfigurationException(String msg, Throwable e) {
96 Throwable e) {

Completed in 4511 milliseconds

1 2 3 4 5 67 8 91011>>