Home
last modified time | relevance | path

Searched refs:reject_handler (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/runtime/
Druntime-promise.cc139 Handle<JSFunction> reject_handler, in AwaitPromisesInitCommon() argument
162 isolate, reject_handler, in AwaitPromisesInitCommon()
190 CONVERT_ARG_HANDLE_CHECKED(JSFunction, reject_handler, 3); in RUNTIME_FUNCTION()
193 reject_handler, is_predicted_as_caught); in RUNTIME_FUNCTION()
202 CONVERT_ARG_HANDLE_CHECKED(JSFunction, reject_handler, 3); in RUNTIME_FUNCTION()
209 reject_handler, is_predicted_as_caught); in RUNTIME_FUNCTION()
/external/v8/src/objects/
Dpromise.tq31 reject_handler: Callable|Undefined;
Dobjects.cc5483 secondary_handler = handle(reaction->reject_handler(), isolate); in TriggerPromiseReactions()
5485 primary_handler = handle(reaction->reject_handler(), isolate); in TriggerPromiseReactions()
/external/v8/src/builtins/
Dpromise-abstract-operations.tq101 secondaryHandler = promiseReaction.reject_handler;
104 primaryHandler = promiseReaction.reject_handler;
Dpromise-misc.tq143 reject_handler: rejectHandler,
/external/v8/src/execution/
Disolate.cc964 } else if (IsBuiltinFunction(isolate, reaction->reject_handler(), in CaptureAsyncStackTrace()
966 Handle<JSFunction> function(JSFunction::cast(reaction->reject_handler()), in CaptureAsyncStackTrace()
2472 if (!reaction->reject_handler().IsUndefined(isolate)) { in ThrowInternal()
2473 Handle<JSReceiver> reject_handler( in ThrowInternal() local
2474 JSReceiver::cast(reaction->reject_handler()), isolate); in ThrowInternal()
2475 if (PromiseIsRejectHandler(isolate, reject_handler)) return true; in ThrowInternal()
/external/v8/src/diagnostics/
Dobjects-printer.cc1496 os << "\n - reject_handler: " << Brief(reject_handler()); in PromiseReactionPrint()