Searched refs:ChangeBreakOnException (Results 1 - 6 of 6) sorted by relevance

/external/v8/src/
H A Ddebug-debugger.js758 %ChangeBreakOnException(Debug.ExceptionBreak.Caught, false);
759 %ChangeBreakOnException(Debug.ExceptionBreak.Uncaught, false);
874 return %ChangeBreakOnException(Debug.ExceptionBreak.Caught, true);
878 return %ChangeBreakOnException(Debug.ExceptionBreak.Caught, false);
886 return %ChangeBreakOnException(Debug.ExceptionBreak.Uncaught, true);
890 return %ChangeBreakOnException(Debug.ExceptionBreak.Uncaught, false);
1866 %ChangeBreakOnException(Debug.ExceptionBreak.Caught, enabled);
1868 %ChangeBreakOnException(Debug.ExceptionBreak.Uncaught, enabled);
H A Druntime.h411 F(ChangeBreakOnException, 2, 1) \
H A Ddebug.h244 void ChangeBreakOnException(ExceptionBreakType type, bool enable);
H A Ddebug.cc1269 void Debug::ChangeBreakOnException(ExceptionBreakType type, bool enable) { function in class:v8::internal::Debug
H A Druntime.cc11576 // If the number doesn't match an enum value, the ChangeBreakOnException
11581 isolate->debug()->ChangeBreakOnException(type, enable);
/external/v8/test/cctest/
H A Dtest-debug.cc345 static void ChangeBreakOnException(bool caught, bool uncaught) { function
347 debug->ChangeBreakOnException(v8::internal::BreakException, caught);
348 debug->ChangeBreakOnException(v8::internal::BreakUncaughtException, uncaught);
3775 ChangeBreakOnException(false, false);
3788 ChangeBreakOnException(false, true);
3801 ChangeBreakOnException(true, true);
3814 ChangeBreakOnException(true, false);
3890 ChangeBreakOnException(false, true);
3944 ChangeBreakOnException(false, true);
3986 ChangeBreakOnException(fals
[all...]

Completed in 155 milliseconds