Searched defs:TryCatch (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dfull-codegen.h218 class TryCatch : public NestedStatement { class in class:v8::internal::FullCodeGenerator
220 explicit TryCatch(FullCodeGenerator* codegen) : NestedStatement(codegen) { function in class:v8::internal::FullCodeGenerator::TryCatch
222 virtual ~TryCatch() {}
H A Dapi.cc1646 v8::TryCatch::TryCatch() function in class:v8::v8::TryCatch
1659 v8::TryCatch::~TryCatch() {
1672 bool v8::TryCatch::HasCaught() const {
1677 bool v8::TryCatch::CanContinue() const {
1682 v8::Handle<v8::Value> v8::TryCatch::ReThrow() {
1689 v8::Local<Value> v8::TryCatch::Exception() const {
1701 v8::Local<Value> v8::TryCatch::StackTrace() const {
1719 v8::Local<v8::Message> v8::TryCatch
[all...]
/external/v8/include/
H A Dv8.h3200 * exceptions act as if they were caught by a C++ TryCatch exception
3201 * handler. If forceful termination is used, any C++ TryCatch
3314 class V8EXPORT TryCatch { class in namespace:v8
3319 TryCatch();
3324 ~TryCatch();
3336 * TryCatch handler and for which it does not make sense to continue
3347 * Throws the exception caught by this TryCatch in a way that avoids
3348 * it being caught again by this same TryCatch. As with ThrowException
3359 * The returned handle is valid until this TryCatch block has been destroyed.
3373 * The returned handle is valid until this TryCatch bloc
[all...]

Completed in 100 milliseconds