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

1 2

  /external/v8/test/mjsunit/es6/debug-promises/
try-reject-in-constructor.js 7 // Test debug events when we only listen to uncaught exceptions and
20 assertEquals("uncaught", event_data.exception().message);
22 assertTrue(event_data.uncaught());
36 try { // This try-catch must not prevent this uncaught reject event.
37 reject(new Error("uncaught")); // event
reject-in-constructor.js 7 // Test debug events when we only listen to uncaught exceptions and
20 assertEquals("uncaught", event_data.exception().message);
22 assertTrue(event_data.uncaught());
35 reject(new Error("uncaught")); // event
throw-in-constructor.js 7 // Test debug events when we only listen to uncaught exceptions and
20 assertEquals("uncaught", event_data.exception().message);
22 assertTrue(event_data.uncaught());
36 throw new Error("uncaught"); // event
try-throw-reject-in-constructor.js 7 // Test debug events when we only listen to uncaught exceptions and
21 assertEquals("uncaught", event_data.exception().message);
23 assertTrue(event_data.uncaught());
37 try { // This try-catch must not prevent this uncaught reject event.
40 reject(new Error("uncaught")); // event
promise-all-uncaught.js 7 // Test debug events when we only listen to uncaught exceptions and a
23 throw new Error("uncaught"); // event
36 assertEquals("uncaught", event_data.exception().message);
45 assertTrue(event_data.uncaught());
promise-race-uncaught.js 7 // Test debug events when we only listen to uncaught exceptions and a
23 throw new Error("uncaught"); // event
36 assertEquals("uncaught", event_data.exception().message);
45 assertTrue(event_data.uncaught());
reject-uncaught-late.js 7 // Test debug events when we only listen to uncaught exceptions and
30 reject_closure(new Error("uncaught reject p")); // event
39 assertEquals("uncaught reject p", event_data.exception().message);
42 assertTrue(event_data.uncaught());
reject-uncaught-uncaught.js 7 // Test debug events when we only listen to uncaught exceptions and
24 return Promise.reject(Error("uncaught reject")); // event
32 assertEquals("uncaught reject", event_data.exception().message);
35 assertTrue(event_data.uncaught());
throw-uncaught-uncaught.js 7 // Test debug events when we only listen to uncaught exceptions and
24 throw new Error("uncaught"); // event
33 assertEquals("uncaught", event_data.exception().message);
36 assertTrue(event_data.uncaught());
reject-caught-by-default-reject-handler.js 7 // Test debug events when we only listen to uncaught exceptions and
44 assertTrue(event_data.uncaught());
47 // p1 is rejected, uncaught except for its default reject handler.
reject-uncaught-all.js 24 return Promise.reject(new Error("uncaught reject"));
32 assertEquals("uncaught reject", event_data.exception().message);
35 assertTrue(event_data.uncaught());
throw-caught-by-default-reject-handler.js 7 // Test debug events when we only listen to uncaught exceptions and
44 assertTrue(event_data.uncaught());
47 // p1 is rejected, uncaught except for its default reject handler.
throw-uncaught-all.js 24 throw new Error("uncaught"); // event
33 assertEquals("uncaught", event_data.exception().message);
36 assertTrue(event_data.uncaught());
reject-caught-late.js 7 // Test debug events when we only listen to uncaught exceptions, the Promise
reject-caught-uncaught.js 7 // Test debug events when we only listen to uncaught exceptions and
throw-caught-late.js 7 // Test debug events when we only listen to uncaught exceptions, the Promise
throw-caught-uncaught.js 7 // Test debug events when we only listen to uncaught exceptions and
promise-all-caught.js 7 // Test debug events when we only listen to uncaught exceptions and a
promise-race-caught.js 7 // Test debug events when we only listen to uncaught exceptions and a
reject-after-resolve.js 7 // Test debug events when we listen to uncaught exceptions and
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
EventMod.java 83 public boolean uncaught; field in class:EventMod
115 uncaught = false;
EventBuilder.java 94 * @param uncaught true to report uncaught exception, false otherwise
98 boolean uncaught) {
101 mod.uncaught = uncaught;
  /external/v8/test/mjsunit/
debug-setexceptionbreak.js 86 testArguments(dcp, '{"type":"uncaught"}', true, "uncaught", true);
87 testArguments(dcp, '{"type":"uncaught"}', true, "uncaught", false);
93 testArguments(dcp, '{"type":"uncaught","enabled":true}', true,
94 "uncaught", true);
95 testArguments(dcp, '{"type":"uncaught","enabled":false}', true,
96 "uncaught", false);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedExceptionEventsTest.java 49 * Tests combined EXCEPTION events for uncaught exception. It runs the
51 * EXCEPTION events for uncaught exception.
63 * <li>only uncaught DebuggeeException (and subclasses)</li>
64 * <li>only uncaught SubDebuggeeException (and subclasses)</li>
65 * <li>caught and uncaught DebuggeeException (and subclasses)</li>
66 * <li>caught and uncaught SubDebuggeeException (and subclasses)</li>
72 * true to test uncaught exception, false to test caught exception.
92 // Request "uncaught only" exceptions with super and sub classes.
96 // Request "caught & uncaught" exceptions with super and sub classes.
174 boolean uncaught) {
    [all...]
  /art/runtime/jdwp/
jdwp_event.h 66 uint8_t uncaught; member in struct:art::JDWP::JdwpEventMod::__anon108

Completed in 372 milliseconds

1 2