Home | History | Annotate | Download | only in include

Lines Matching full:trycatch

6520 class V8_EXPORT TryCatch {
6524 * all TryCatch blocks should be stack allocated because the memory
6527 V8_DEPRECATED("Use isolate version", TryCatch());
6531 * all TryCatch blocks should be stack allocated because the memory
6534 TryCatch(Isolate* isolate);
6539 ~TryCatch();
6571 * Throws the exception caught by this TryCatch in a way that avoids
6572 * it being caught again by this same TryCatch. As with ThrowException
6583 * The returned handle is valid until this TryCatch block has been destroyed.
6599 * The returned handle is valid until this TryCatch block has been
6627 * Set whether or not this TryCatch should capture a Message object
6634 * There are cases when the raw address of C++ TryCatch object cannot be
6644 static void* JSStackComparableAddress(v8::TryCatch* handler) {
6652 // Make it hard to create heap-allocated TryCatch blocks.
6653 TryCatch(const TryCatch&);
6654 void operator=(const TryCatch&);
6659 v8::TryCatch* next_;