Searched refs:reject_handler (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/runtime/ |
D | runtime-promise.cc | 139 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/ |
D | promise.tq | 31 reject_handler: Callable|Undefined;
|
D | objects.cc | 5483 secondary_handler = handle(reaction->reject_handler(), isolate); in TriggerPromiseReactions() 5485 primary_handler = handle(reaction->reject_handler(), isolate); in TriggerPromiseReactions()
|
/external/v8/src/builtins/ |
D | promise-abstract-operations.tq | 101 secondaryHandler = promiseReaction.reject_handler; 104 primaryHandler = promiseReaction.reject_handler;
|
D | promise-misc.tq | 143 reject_handler: rejectHandler,
|
/external/v8/src/execution/ |
D | isolate.cc | 964 } 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/ |
D | objects-printer.cc | 1496 os << "\n - reject_handler: " << Brief(reject_handler()); in PromiseReactionPrint()
|