Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-function-prototype.c246 ecma_object_t *function_p; in ecma_builtin_function_prototype_object_bind() local
252 function_p = ecma_create_object (prototype_obj_p, in ecma_builtin_function_prototype_object_bind()
257 bound_func_p = (ecma_bound_function_t *) function_p; in ecma_builtin_function_prototype_object_bind()
275 function_p = ecma_create_object (prototype_obj_p, in ecma_builtin_function_prototype_object_bind()
280 bound_func_p = (ecma_bound_function_t *) function_p; in ecma_builtin_function_prototype_object_bind()
304 if (ecma_find_named_property (function_p, name_prop) == NULL) { in ecma_builtin_function_prototype_object_bind()
305 ecma_property_value_t* prop_val = ecma_create_named_data_property(function_p, name_prop, in ecma_builtin_function_prototype_object_bind()
363 return ecma_make_object_value (function_p); in ecma_builtin_function_prototype_object_bind()
Decma-builtin-promise.c254 ecma_object_t *function_p = ecma_get_object_from_value (function); in ecma_builtin_promise_all_handler() local
257 ecma_value_t already_called = ecma_op_object_get (function_p, already_called_str_p); in ecma_builtin_promise_all_handler()
268 ecma_op_object_put (function_p, in ecma_builtin_promise_all_handler()
279 ecma_value_t index_val = ecma_op_object_get (function_p, str_index_p); in ecma_builtin_promise_all_handler()
280 ecma_value_t values_array = ecma_op_object_get (function_p, str_value_p); in ecma_builtin_promise_all_handler()
281 ecma_value_t capability = ecma_op_object_get (function_p, str_capability_p); in ecma_builtin_promise_all_handler()
282 ecma_value_t remaining = ecma_op_object_get (function_p, str_remaining_p); in ecma_builtin_promise_all_handler()
Decma-builtin-string-prototype.c490 ecma_object_t *function_p = ecma_get_object_from_value (replace_value); in ecma_builtin_string_prototype_object_replace() local
499 result = ecma_op_function_call (function_p, in ecma_builtin_string_prototype_object_replace()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-promise-object.c269 ecma_object_t *function_p = ecma_get_object_from_value (function); in ecma_promise_reject_handler() local
271 …ecma_value_t promise = ecma_op_object_get_by_magic_id (function_p, LIT_INTERNAL_MAGIC_STRING_PROMI… in ecma_promise_reject_handler()
277 if (!ecma_is_resolver_already_called (function_p, promise_obj_p)) in ecma_promise_reject_handler()
306 ecma_object_t *function_p = ecma_get_object_from_value (function); in ecma_promise_resolve_handler() local
308 …ecma_value_t promise = ecma_op_object_get_by_magic_id (function_p, LIT_INTERNAL_MAGIC_STRING_PROMI… in ecma_promise_resolve_handler()
314 if (ecma_is_resolver_already_called (function_p, promise_obj_p)) in ecma_promise_resolve_handler()
Decma-regexp-object.c2592 ecma_object_t *function_p = ecma_get_object_from_value (replace_arg); in ecma_regexp_replace_helper_fast() local
2594 result = ecma_op_function_call (function_p, in ecma_regexp_replace_helper_fast()
2792 …ecma_extended_object_t *function_p = (ecma_extended_object_t *) ecma_get_object_from_value (result… in ecma_regexp_replace_helper() local
2794 && ecma_builtin_is_regexp_exec (function_p)) in ecma_regexp_replace_helper()
2820 ecma_deref_object ((ecma_object_t *) function_p); in ecma_regexp_replace_helper()
2843 ecma_deref_object ((ecma_object_t *) function_p); in ecma_regexp_replace_helper()
2855 ecma_object_t *const function_p = ecma_get_object_from_value (result); in ecma_regexp_replace_helper() local
2858 result = ecma_op_function_call (function_p, this_arg, arguments, 1); in ecma_regexp_replace_helper()
2860 ecma_deref_object (function_p); in ecma_regexp_replace_helper()
3418 ecma_object_t *function_p = ecma_get_object_from_value (exec); in ecma_op_regexp_exec() local
[all …]
Decma-function-object.c528 ecma_op_function_get_compiled_code (ecma_extended_object_t *function_p) /**< function pointer */ in ecma_op_function_get_compiled_code() argument
531 if (function_p->u.function.bytecode_cp != ECMA_NULL_POINTER) in ecma_op_function_get_compiled_code()
534 function_p->u.function.bytecode_cp); in ecma_op_function_get_compiled_code()
538 return ((ecma_static_function_t *) function_p)->bytecode_p; in ecma_op_function_get_compiled_code()
542 function_p->u.function.bytecode_cp); in ecma_op_function_get_compiled_code()
Decma-function-object.h46 ecma_op_function_get_compiled_code (ecma_extended_object_t *function_p);