Searched refs:uncaught (Results 1 - 25 of 25) sorted by relevance

/external/libcxx/test/language.support/support.exception/uncaught/
H A DAndroid.mk17 test_makefile := external/libcxx/test/language.support/support.exception/uncaught/Android.mk
19 test_name := language.support/support.exception/uncaught/uncaught_exception
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DEventMod.java83 public boolean uncaught; field in class:EventMod
115 uncaught = false;
H A DEventBuilder.java94 * @param uncaught true to report uncaught exception, false otherwise
98 boolean uncaught) {
101 mod.uncaught = uncaught;
97 setExceptionOnly(long exceptionClassID, boolean caught, boolean uncaught) argument
H A DVmMirror.java1313 commandPacket.setNextValueAsBoolean(event.mods[i].uncaught);
1410 * @param uncaught
1411 * is exception uncaught
1415 boolean uncaught) {
1418 return setException(typeID, caught, uncaught);
1428 * @param uncaught
1429 * is exception uncaught
1433 boolean uncaught) {
1441 mods[0].uncaught = uncaught;
1414 setException(String exceptionSignature, boolean caught, boolean uncaught) argument
1432 setException(long exceptionID, boolean caught, boolean uncaught) argument
1462 setCountableException(String exceptionSignature, boolean caught, boolean uncaught, int count) argument
[all...]
/external/chromium_org/v8/test/mjsunit/es6/debug-promises/
H A Dreject-in-constructor.js7 // 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
H A Dthrow-in-constructor.js7 // 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
H A Dtry-reject-in-constructor.js7 // 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
H A Dtry-throw-reject-in-constructor.js7 // 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
H A Dthrow-caught-all.js39 assertFalse(event_data.uncaught());
H A Dreject-caught-all.js40 assertFalse(event_data.uncaught());
H A Dreject-caught-by-default-reject-handler.js7 // 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.
H A Dreject-uncaught-all.js24 return Promise.reject(new Error("uncaught reject"));
32 assertEquals("uncaught reject", event_data.exception().message);
35 assertTrue(event_data.uncaught());
H A Dreject-uncaught-late.js7 // 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());
H A Dreject-uncaught-uncaught.js7 // 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());
H A Dthrow-caught-by-default-reject-handler.js7 // 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.
H A Dthrow-uncaught-all.js24 throw new Error("uncaught"); // event
33 assertEquals("uncaught", event_data.exception().message);
36 assertTrue(event_data.uncaught());
H A Dthrow-uncaught-uncaught.js7 // 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());
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-event-listener.js59 assertFalse(lastDebugEvent.event_data.uncaught());
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
H A DJDWPEventModifierTestCase.java75 * @param uncaught whether the exception must be uncaught
79 String exceptionClassSignature, boolean caught, boolean uncaught) {
86 builder.setExceptionOnly(exceptionClassID, caught, uncaught);
78 createExceptionEventBuilder( String exceptionClassSignature, boolean caught, boolean uncaught) argument
/external/chromium_org/v8/src/
H A Ddebug.h348 void OnThrow(Handle<Object> exception, bool uncaught);
507 void OnException(Handle<Object> exception, bool uncaught,
520 bool uncaught,
H A Ddebug-debugger.js1070 function MakeExceptionEvent(break_id, exception, uncaught, promise) {
1071 return new ExceptionEvent(break_id, exception, uncaught, promise);
1075 function ExceptionEvent(break_id, exception, uncaught, promise) {
1078 this.uncaught_ = uncaught;
1093 ExceptionEvent.prototype.uncaught = function() {
1126 o.body = { uncaught: this.uncaught_,
1781 } else if (type == 'uncaught') {
1796 } else if (type == 'uncaught') {
H A Ddebug.cc2469 bool uncaught,
2474 isolate_->factory()->ToBoolean(uncaught),
2504 void Debug::OnThrow(Handle<Object> exception, bool uncaught) { argument
2514 OnException(exception, uncaught, isolate_->GetPromiseOnStackOnThrow());
2528 void Debug::OnException(Handle<Object> exception, bool uncaught, argument
2531 uncaught |= !PromiseHasRejectHandler(Handle<JSObject>::cast(promise));
2534 if (uncaught) {
2552 exception, uncaught, promise).ToHandle(&event_data)) {
2468 MakeExceptionEvent(Handle<Object> exception, bool uncaught, Handle<Object> promise) argument
H A Dd8.js171 if (body.uncaught) {
997 arg2 = 'uncaught';
1004 } else if (arg1 == 'all' || arg1 == 'unc' || arg1 == 'uncaught') {
1011 excType = 'uncaught';
/external/chromium_org/v8/test/cctest/
H A Dtest-debug.cc321 static void ChangeBreakOnException(bool caught, bool uncaught) { argument
324 debug->ChangeBreakOnException(v8::internal::BreakUncaughtException, uncaught);
330 bool uncaught) {
340 if (uncaught) {
703 // Check whether the exception was uncaught.
705 v8::String::NewFromUtf8(CcTest::isolate(), "uncaught");
3874 // check that uncaught exceptions are still returned even if there is a break
3918 // Break on uncaught exception
3931 // Break on exception and uncaught exception
3970 // Break on uncaught exceptio
329 ChangeBreakOnExceptionFromJS(v8::Isolate* isolate, bool caught, bool uncaught) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 2889 milliseconds