HomeSort by relevance Sort by last modified time
    Searched refs:thrown (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ArrayTest.java 33 boolean thrown = false;
45 thrown = true;
47 if (!thrown) {
50 thrown = false;
55 thrown = true;
57 if (!thrown) {
64 thrown = false;
76 thrown = true;
78 if (!thrown) {
81 thrown = false
    [all...]
FieldTest.java 40 // to be thrown. This version has been validated to pass on a standard
200 boolean thrown = false;
207 thrown = true;
209 assertTrue("IllegalAccessException expected but not thrown", thrown);
218 thrown = false;
225 thrown = true;
227 assertTrue("IllegalArgumentException expected but not thrown", thrown);
230 thrown = false
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ArrayTest.java 33 boolean thrown = false;
42 thrown = true;
44 if (!thrown) {
47 thrown = false;
52 thrown = true;
54 if (!thrown) {
67 boolean thrown = false;
75 thrown = true;
77 if (!thrown) {
80 thrown = false
    [all...]
  /libcore/luni/src/main/java/java/io/
FilterOutputStream.java 59 Throwable thrown = null; local
63 thrown = e;
69 if (thrown == null) {
70 thrown = e;
74 if (thrown != null) {
75 SneakyThrow.sneakyThrow(thrown);
BufferedWriter.java 89 Throwable thrown = null; local
93 thrown = e;
100 if (thrown == null) {
101 thrown = e;
106 if (thrown != null) {
107 SneakyThrow.sneakyThrow(thrown);
  /frameworks/base/core/java/android/util/
Base64OutputStream.java 105 IOException thrown = null; local
110 thrown = e;
120 if (thrown != null) {
121 thrown = e;
125 if (thrown != null) {
126 throw thrown;
  /frameworks/base/core/jni/
android_text_format_Time.cpp 364 bool *thrown)
370 if (!*thrown) {
374 *thrown = true;
399 bool thrown = false; local
411 n = get_char(env, s, 0, 1000, &thrown);
412 n += get_char(env, s, 1, 100, &thrown);
413 n += get_char(env, s, 2, 10, &thrown);
414 n += get_char(env, s, 3, 1, &thrown);
415 if (thrown) return false;
419 n = get_char(env, s, 4, 10, &thrown);
482 bool thrown = false; local
    [all...]
  /external/webkit/LayoutTests/fast/events/touch/resources/
create-touch-event.js 14 testFailed("An exception was thrown: " + e.message);
  /libcore/luni/src/main/java/java/util/logging/
LogRecord.java 115 private Throwable thrown; field in class:LogRecord
179 this.thrown = null;
445 return thrown;
451 * @param thrown
455 public void setThrown(Throwable thrown) {
456 this.thrown = thrown;
  /frameworks/base/core/java/com/android/internal/logging/
AndroidHandler.java 91 Throwable thrown = r.getThrown();
92 if (thrown != null) {
97 thrown.printStackTrace(pw);
  /external/webkit/LayoutTests/storage/indexeddb/resources/
shared.js 38 testFailed("No exception thrown! Should have been " + expected);
41 testPassed("Exception was thrown.");
  /dalvik/vm/mterp/x86/
OP_FILL_ARRAY_DATA.S 13 testl %eax,%eax # exception thrown?
  /dalvik/vm/mterp/x86-atom/
OP_THROW_VERIFICATION_ERROR.S 33 EXPORT_PC # in case an exception is thrown
OP_CONST_STRING.S 62 je common_exceptionThrown # resolve failed; exception thrown
OP_CONST_STRING_JUMBO.S 64 je common_exceptionThrown # resolve failed; exception thrown
OP_SGET.S 44 EXPORT_PC # in case an exception is thrown
OP_SGET_WIDE.S 54 EXPORT_PC # in case an exception is thrown
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyFormatter.java 98 Throwable thrown = record.getThrown(); local
107 if (thrown != null) {
110 thrown.printStackTrace(pw);
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
callback-exception.js 1 description("Tests that when an exception is thrown in the success callback, the error callback is not invoked. Note that this test throws an exception which is not caught.");
23 // must be started before the exception is thrown.
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch-list.js 32 testFailed("An exception was thrown: " + e.message);
39 testFailed("An exception was thrown: " + e.message);
  /dalvik/vm/mterp/armv5te/
OP_FILL_ARRAY_DATA.S 11 cmp r0, #0 @ 0 means an exception is thrown
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
lexical-048.js 21 var exception = "No exception thrown";
lexical-049.js 20 var exception = "No exception thrown";
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 225 fail("Expected exception was not thrown.");
228 System.out.println("Expected exception was thrown: "
349 fail("Expected IllegalStateException was not thrown");
354 fail("Expected IllegalStateException was not thrown");
359 fail("Expected IllegalStateException was not thrown");
365 fail("Expected IllegalStateException was not thrown");
370 fail("Expected IllegalStateException was not thrown");
761 fail("Expected exception was not thrown.");
764 System.out.println("Expected exception was thrown: "
1128 protected Throwable thrown; field in class:HttpsURLConnectionTest.Work
    [all...]
  /external/v8/test/mjsunit/
keyed-call-generic.js 102 var thrown = false;
106 thrown = true;
108 assertEquals(exceptions[k], thrown);

Completed in 2025 milliseconds

1 2 3 4 5 6 7