Home
last modified time | relevance | path

Searched refs:ecma_op_create_array_object (Results 1 – 13 of 13) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-array.c143 array = ecma_op_create_array_object (NULL, 0, false); in ecma_builtin_array_object_from()
305 array = ecma_op_create_array_object (&len_value, 1, true); in ecma_builtin_array_object_from()
412 return ecma_op_create_array_object (arguments_list_p, arguments_list_len, false); in ecma_builtin_array_object_of()
489 return ecma_op_create_array_object (arguments_list_p, arguments_list_len, true); in ecma_builtin_array_dispatch_call()
504 return ecma_op_create_array_object (arguments_list_p, arguments_list_len, true); in ecma_builtin_array_dispatch_construct()
514 ecma_value_t result = ecma_op_create_array_object (arguments_list_p, arguments_list_len, true); in ecma_builtin_array_dispatch_construct()
Decma-builtin-array-prototype.c232 ecma_value_t new_array = ecma_op_create_array_object (NULL, 0, false); in ecma_builtin_array_prototype_object_concat()
879 ecma_value_t new_array = ecma_op_create_array_object (NULL, 0, false); in ecma_builtin_array_prototype_object_slice()
1280 ecma_value_t new_array = ecma_op_create_array_object (NULL, 0, false); in ecma_builtin_array_prototype_object_splice()
1975 ecma_value_t new_array = ecma_op_create_array_object (&length_value, 1, true); in ecma_builtin_array_prototype_object_map()
2067 ecma_value_t new_array = ecma_op_create_array_object (NULL, 0, false); in ecma_builtin_array_prototype_object_filter()
Decma-builtin-helpers.c296 return ecma_op_create_array_object (NULL, 0, false); in ecma_builtin_helper_object_get_properties()
299 …ecma_value_t new_array = ecma_op_create_array_object (props_p->buffer_p, props_p->item_count, fals… in ecma_builtin_helper_object_get_properties()
Decma-builtin-string-prototype.c814 result = ecma_op_create_array_object (NULL, 0, false); in ecma_builtin_string_prototype_object_split()
Decma-builtin-json.c547 ecma_value_t array_construction = ecma_op_create_array_object (NULL, 0, false); in ecma_builtin_json_parse_value()
/third_party/jerryscript/jerry-core/vm/
Dvm-utils.c104 ecma_value_t result_array = ecma_op_create_array_object (NULL, 0, false); in vm_get_backtrace()
145 return ecma_op_create_array_object (NULL, 0, false); in vm_get_backtrace()
Dvm.c4344 ecma_value_t new_array = ecma_op_create_array_object (arg_p + arg_list_len, in vm_init_exec()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-array-object.h99 ecma_op_create_array_object (const ecma_value_t *arguments_list_p, ecma_length_t arguments_list_len,
Decma-iterator-object.c56 ecma_value_t new_array = ecma_op_create_array_object (NULL, 0, false); in ecma_create_array_from_iter_element()
Decma-array-object.c580 ecma_op_create_array_object (const ecma_value_t *arguments_list_p, /**< list of arguments that in ecma_op_create_array_object() function
728 ecma_value_t new_array = ecma_op_create_array_object (&length_val, 1, true); in ecma_op_array_species_create()
Decma-proxy-object.c1727 ecma_value_t args_array = ecma_op_create_array_object (args_p, argc, false); in ecma_proxy_object_call()
1783 ecma_value_t arg_array = ecma_op_create_array_object (args_p, argc, false); in ecma_proxy_object_construct()
Decma-regexp-object.c1586 ecma_value_t result_array = ecma_op_create_array_object (0, 0, false); in ecma_regexp_create_result_object()
2123 ecma_value_t array = ecma_op_create_array_object (NULL, 0, false); in ecma_regexp_split_helper()
2335 ecma_value_t array = ecma_op_create_array_object (NULL, 0, false); in ecma_regexp_split_helper()
3279 ecma_value_t result_array = ecma_op_create_array_object (0, 0, false); in ecma_regexp_match_helper()
/third_party/jerryscript/jerry-core/api/
Djerry.c1456 ecma_value_t array_value = ecma_op_create_array_object (&array_length, argument_size, true); in jerry_create_array()