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

/external/libcxxabi/src/
H A Dcxa_default_handlers.cpp43 void* thrown_object = local
59 if (catch_type->can_catch(thrown_type, thrown_object))
62 const std::exception* e = static_cast<const std::exception*>(thrown_object);
H A Dcxa_exception.cpp45 cxa_exception_from_thrown_object(void* thrown_object) argument
47 return static_cast<__cxa_exception*>(thrown_object) - 1;
170 void __cxa_free_exception (void * thrown_object) throw() { argument
171 do_free(cxa_exception_from_thrown_object(thrown_object));
223 __cxa_throw(void* thrown_object, std::type_info* tinfo, void (*dest)(void*)) argument
226 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object);
590 If thrown_object is not null, atomically increment the referenceCount field
592 by thrown_object.
594 Requires: If thrown_object is not NULL, it is a native exception.
597 __cxa_increment_exception_refcount(void* thrown_object) thro argument
615 __cxa_decrement_exception_refcount(void* thrown_object) argument
656 void* thrown_object = thrown_object_from_cxa_exception(exception_header); local
684 __cxa_rethrow_primary_exception(void* thrown_object) argument
[all...]
/external/v8/src/
H A Dfactory.cc814 Handle<Object> thrown_object) {
823 context->set(Context::THROWN_OBJECT_INDEX, *thrown_object);
811 NewCatchContext(Handle<JSFunction> function, Handle<Context> previous, Handle<String> name, Handle<Object> thrown_object) argument

Completed in 78 milliseconds