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

/external/chromium_org/v8/src/
H A Ddebug-debugger.js754 %ChangeBreakOnException(Debug.ExceptionBreak.Caught, false);
755 %ChangeBreakOnException(Debug.ExceptionBreak.Uncaught, false);
872 return %ChangeBreakOnException(Debug.ExceptionBreak.Caught, true);
876 return %ChangeBreakOnException(Debug.ExceptionBreak.Caught, false);
884 return %ChangeBreakOnException(Debug.ExceptionBreak.Uncaught, true);
888 return %ChangeBreakOnException(Debug.ExceptionBreak.Uncaught, false);
1795 %ChangeBreakOnException(Debug.ExceptionBreak.Caught, enabled);
1797 %ChangeBreakOnException(Debug.ExceptionBreak.Uncaught, enabled);
H A Ddebug.h390 void ChangeBreakOnException(ExceptionBreakType type, bool enable);
H A Druntime.h547 F(ChangeBreakOnException, 2, 1) \
H A Ddebug.cc1247 void Debug::ChangeBreakOnException(ExceptionBreakType type, bool enable) { function in class:v8::internal::Debug
H A Druntime.cc12863 // If the number doesn't match an enum value, the ChangeBreakOnException
12867 isolate->debug()->ChangeBreakOnException(type, enable);
/external/chromium_org/v8/test/cctest/
H A Dtest-debug.cc321 static void ChangeBreakOnException(bool caught, bool uncaught) { function
323 debug->ChangeBreakOnException(v8::internal::BreakException, caught);
324 debug->ChangeBreakOnException(v8::internal::BreakUncaughtException, uncaught);
3908 ChangeBreakOnException(false, false);
3921 ChangeBreakOnException(false, true);
3934 ChangeBreakOnException(true, true);
3947 ChangeBreakOnException(true, false);
4031 ChangeBreakOnException(false, true);
4060 ChangeBreakOnException(false, true);
4114 ChangeBreakOnException(fals
[all...]

Completed in 2244 milliseconds