Home
last modified time | relevance | path

Searched refs:exception_ (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/content/renderer/pepper/
Dpepper_try_catch.cc65 exception_(PP_MakeUndefined()) { in PepperTryCatchV8()
77 ppapi::PpapiGlobals::Get()->GetVarTracker()->ReleaseVar(exception_); in ~PepperTryCatchV8()
81 return GetContext().IsEmpty() || exception_.type != PP_VARTYPE_UNDEFINED; in HasException()
99 ppapi::StringVar* message_var = ppapi::StringVar::FromPPVar(exception_); in ThrowException()
105 ppapi::PpapiGlobals::Get()->GetVarTracker()->ReleaseVar(exception_); in ThrowException()
106 exception_ = PP_MakeUndefined(); in ThrowException()
119 exception_ = ppapi::StringVar::StringToPPVar(message); in SetException()
127 exception_(exception), in PepperTryCatchVar()
153 if (exception_) in HasException()
154 *exception_ = ppapi::StringVar::StringToPPVar(exception_message); in HasException()
[all …]
Dpepper_try_catch.h64 PP_Var* exception() { return &exception_; } in exception()
72 PP_Var exception_;
101 PP_Var* exception_; variable
/external/chromium_org/ppapi/cpp/dev/
Dscriptable_object_deprecated.cc25 if (!exception_.is_undefined()) in ~ExceptionConverter()
26 *out_ = exception_.Detach(); in ~ExceptionConverter()
29 Var* Get() { return &exception_; } in Get()
33 Var exception_; member in pp::deprecated::__anon69d0fb4e0111::ExceptionConverter
/external/chromium_org/ppapi/proxy/
Dserialized_var.cc234 exception_(exception) { in ReceiveSerializedException()
238 if (exception_) { in ~ReceiveSerializedException()
243 *exception_ = inner_->GetVar(); in ~ReceiveSerializedException()
258 return exception_ && exception_->type != PP_VARTYPE_UNDEFINED; in IsThrown()
Dserialized_var.h308 PP_Var* exception_;
/external/chromium_org/v8/src/
Disolate.cc197 v->VisitPointer(bit_cast<Object**>(&(block->exception_))); in Iterate()
895 if (scheduled_exception() == handler->exception_) { in CancelScheduledExceptionFromTryCatch()
1797 try_catch_handler()->exception_ = heap()->null_value(); in PropagatePendingExceptionToExternalTryCatch()
1806 handler->exception_ = pending_exception(); in PropagatePendingExceptionToExternalTryCatch()
Ddebug-debugger.js1077 this.exception_ = exception;
1089 return this.exception_;
1127 exception: MakeMirror(this.exception_)
Dmirror-debugger.js1443 this.exception_ = details[3];
1491 return this.exception_ ? true : false;
Dast.h2298 Expression* exception() const { return exception_; } in DECLARE_NODE_TYPE()
2302 : Expression(zone, pos, id_gen), exception_(exception) {} in Throw()
2305 Expression* exception_;
Dapi.cc1955 return !reinterpret_cast<i::Object*>(exception_)->IsTheHole(); in HasCaught()
1980 i::Object* exception = reinterpret_cast<i::Object*>(exception_); in Exception()
1991 i::Object* raw_obj = reinterpret_cast<i::Object*>(exception_); in StackTrace()
2038 exception_ = the_hole; in ResetInternal()
/external/chromium_org/v8/include/
Dv8.h5378 void* exception_; variable