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

/external/v8/src/
H A Dfull-codegen.h111 class TryCatch;
131 virtual TryCatch* AsTryCatch() { return NULL; }
197 class TryCatch : public NestedStatement { class in class:v8::internal::FullCodeGenerator
199 explicit TryCatch(FullCodeGenerator* codegen, Label* catch_entry) function in class:v8::internal::FullCodeGenerator::TryCatch
201 virtual ~TryCatch() {}
202 virtual TryCatch* AsTryCatch() { return this; }
207 DISALLOW_COPY_AND_ASSIGN(TryCatch);
H A Dapi.cc1478 v8::TryCatch::TryCatch() function in class:v8::v8::TryCatch
1490 v8::TryCatch::~TryCatch() {
1503 bool v8::TryCatch::HasCaught() const {
1508 bool v8::TryCatch::CanContinue() const {
1513 v8::Handle<v8::Value> v8::TryCatch::ReThrow() {
1520 v8::Local<Value> v8::TryCatch::Exception() const {
1531 v8::Local<Value> v8::TryCatch::StackTrace() const {
1547 v8::Local<v8::Message> v8::TryCatch
[all...]
/external/v8/include/
H A Dv8.h2952 * exceptions act as if they were caught by a C++ TryCatch exception
2953 * handlers. If forceful termination is used, any C++ TryCatch
3052 class V8EXPORT TryCatch { class in namespace:v8
3058 TryCatch();
3063 ~TryCatch();
3075 * TryCatch handler and for which it does not make sense to continue
3086 * Throws the exception caught by this TryCatch in a way that avoids
3087 * it being caught again by this same TryCatch. As with ThrowException
3098 * The returned handle is valid until this TryCatch block has been destroyed.
3112 * The returned handle is valid until this TryCatch bloc
[all...]

Completed in 89 milliseconds