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

/external/libcxxabi/src/
H A Dcxa_noexception.cpp30 __cxa_increment_exception_refcount(void *thrown_object) throw() { argument
31 if (thrown_object != nullptr)
36 __cxa_decrement_exception_refcount(void *thrown_object) throw() { argument
37 if (thrown_object != nullptr)
45 __cxa_rethrow_primary_exception(void* thrown_object) { argument
46 if (thrown_object != nullptr)
H A Dcxa_default_handlers.cpp44 void* thrown_object = local
60 if (catch_type->can_catch(thrown_type, thrown_object))
63 const std::exception* e = static_cast<const std::exception*>(thrown_object);
H A Dcxa_exception.cpp42 cxa_exception_from_thrown_object(void* thrown_object) argument
44 return static_cast<__cxa_exception*>(thrown_object) - 1;
154 _LIBCXXABI_FUNC_VIS void __cxa_free_exception(void *thrown_object) throw() { argument
155 __free_with_fallback(cxa_exception_from_thrown_object(thrown_object));
206 __cxa_throw(void *thrown_object, std::type_info *tinfo, void (*dest)(void *)) { argument
208 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object);
567 If thrown_object is not null, atomically increment the referenceCount field
569 by thrown_object.
571 Requires: If thrown_object is not NULL, it is a native exception.
574 __cxa_increment_exception_refcount(void *thrown_object) thro argument
591 __cxa_decrement_exception_refcount(void *thrown_object) argument
629 void* thrown_object = thrown_object_from_cxa_exception(exception_header); local
657 __cxa_rethrow_primary_exception(void* thrown_object) argument
[all...]
/external/v8/src/
H A Dfactory.cc995 Handle<Object> thrown_object) {
1005 context->set(Context::THROWN_OBJECT_INDEX, *thrown_object);
991 NewCatchContext(Handle<JSFunction> function, Handle<Context> previous, Handle<ScopeInfo> scope_info, Handle<String> name, Handle<Object> thrown_object) argument

Completed in 420 milliseconds