Home
last modified time | relevance | path

Searched refs:on_fulfilled (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-promise-prototype.c48 ecma_value_t on_fulfilled, /**< on_fulfilled function */ in ecma_builtin_promise_prototype_then() argument
52 on_fulfilled, in ecma_builtin_promise_prototype_then()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-promise-object.c852 ecma_value_t on_fulfilled, /**< on_fulfilled function */ in ecma_promise_do_then() argument
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 function */ in ecma_promise_then() argument
960 ecma_value_t ret = ecma_promise_do_then (promise, on_fulfilled, on_rejected, result_capability); in ecma_promise_then()
Decma-promise-object.h91 ecma_value_t ecma_promise_then (ecma_value_t promise, ecma_value_t on_fulfilled, ecma_value_t on_re…