Home | History | Annotate | Download | only in include

Lines Matching full:trycatch

4662    * exceptions act as if they were caught by a C++ TryCatch exception
4663 * handler. If forceful termination is used, any C++ TryCatch
4814 class V8_EXPORT TryCatch {
4818 * all TryCatch blocks should be stack allocated because the memory
4821 TryCatch();
4826 ~TryCatch();
4858 * Throws the exception caught by this TryCatch in a way that avoids
4859 * it being caught again by this same TryCatch. As with ThrowException
4870 * The returned handle is valid until this TryCatch block has been destroyed.
4884 * The returned handle is valid until this TryCatch block has been
4911 * Set whether or not this TryCatch should capture a Message object
4918 // Make it hard to create heap-allocated TryCatch blocks.
4919 TryCatch(const TryCatch&);
4920 void operator=(const TryCatch&);