Searched refs:on_fulfilled (Results 1 - 9 of 9) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-promise-prototype.c | 48 ecma_value_t on_fulfilled, /**< on_fulfilled function */ in ecma_builtin_promise_prototype_then() 52 on_fulfilled, in ecma_builtin_promise_prototype_then() 47 ecma_builtin_promise_prototype_then(ecma_value_t this_arg, ecma_value_t on_fulfilled, ecma_value_t on_rejected) ecma_builtin_promise_prototype_then() argument
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-promise-object.c | 852 ecma_value_t on_fulfilled, /**< on_fulfilled function */ in ecma_promise_do_then() 859 if (!ecma_op_is_callable (on_fulfilled)) in ecma_promise_do_then() 861 on_fulfilled = ECMA_VALUE_TRUE; in ecma_promise_do_then() 881 if (on_fulfilled != ECMA_VALUE_TRUE) in ecma_promise_do_then() 893 if (on_fulfilled != ECMA_VALUE_TRUE) in ecma_promise_do_then() 895 ecma_collection_push_back (promise_p->reactions, on_fulfilled); in ecma_promise_do_then() 907 ecma_enqueue_promise_reaction_job (result_capability, on_fulfilled, value); in ecma_promise_do_then() 931 ecma_value_t on_fulfilled, /**< on_fulfilled functio in ecma_promise_then() 851 ecma_promise_do_then(ecma_value_t promise, ecma_value_t on_fulfilled, ecma_value_t on_rejected, ecma_value_t result_capability) ecma_promise_do_then() argument 930 ecma_promise_then(ecma_value_t promise, ecma_value_t on_fulfilled, ecma_value_t on_rejected) ecma_promise_then() argument [all...] |
H A D | ecma-promise-object.h | 91 ecma_value_t ecma_promise_then (ecma_value_t promise, ecma_value_t on_fulfilled, ecma_value_t on_rejected);
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-promise.h | 80 Local<Function> on_fulfilled,
|
/third_party/node/deps/v8/include/ |
H A D | v8-promise.h | 80 Local<Function> on_fulfilled,
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-async-iterator-gen.cc | 178 const TNode<JSFunction> on_fulfilled = in Generate_AsyncFromSyncIteratorMethod() local 184 value_wrapper, on_fulfilled, in Generate_AsyncFromSyncIteratorMethod()
|
/third_party/node/deps/v8/src/objects/ |
H A D | source-text-module.cc | 936 Handle<JSBoundFunction> on_fulfilled = in ExecuteAsyncModule() local 954 Handle<Object> argv[] = {on_fulfilled, on_rejected}; in ExecuteAsyncModule()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | js-call-reducer.cc | 7083 Node* on_fulfilled = n.ArgumentOrUndefined(0, jsgraph()); 7102 // Check that {on_fulfilled} is callable. 7103 on_fulfilled = graph()->NewNode( 7105 graph()->NewNode(simplified()->ObjectIsCallable(), on_fulfilled), 7106 on_fulfilled, jsgraph()->UndefinedConstant()); 7120 javascript()->PerformPromiseThen(), receiver, on_fulfilled, on_rejected,
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 7713 Local<Function> on_fulfilled, in Then() 7717 i::Handle<i::Object> argv[] = {Utils::OpenHandle(*on_fulfilled), in Then() 7712 Then(Local<Context> context, Local<Function> on_fulfilled, Local<Function> on_rejected) Then() argument
|
Completed in 35 milliseconds