Searched refs:ecma_op_object_get_by_uint32_index (Results 1 – 14 of 14) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-array-iterator-prototype.c | 135 ecma_value_t get_value = ecma_op_object_get_by_uint32_index (array_object_p, index); in ecma_builtin_array_iterator_prototype_object_next()
|
D | ecma-builtin-string.c | 206 ecma_value_t next_seg = ecma_op_object_get_by_uint32_index (raw_obj_p, next_index); in ecma_builtin_string_object_raw()
|
D | ecma-builtin-function-prototype.c | 138 ecma_value_t get_value = ecma_op_object_get_by_uint32_index (obj_p, index); in ecma_builtin_function_prototype_object_apply()
|
D | ecma-builtin-array.c | 325 ecma_value_t k_value = ecma_op_object_get_by_uint32_index (array_like_obj_p, k); in ecma_builtin_array_object_from()
|
D | ecma-builtin-array-prototype.c | 310 ecma_value_t index_value = ecma_op_object_get_by_uint32_index (obj_p, index); in ecma_op_array_get_to_string_at_index() 420 ecma_value_t get_value = ecma_op_object_get_by_uint32_index (obj_p, len); in ecma_builtin_array_prototype_object_pop() 761 ecma_value_t first_value = ecma_op_object_get_by_uint32_index (obj_p, 0); in ecma_builtin_array_prototype_object_shift() 2389 ecma_value_t get_value = ecma_op_object_get_by_uint32_index (obj_p, index); in ecma_builtin_array_prototype_object_find()
|
D | ecma-builtin-helpers.c | 210 ecma_value_t index_value = ecma_op_object_get_by_uint32_index (obj_p, index); in ecma_builtin_helper_get_to_locale_string_at_index()
|
D | ecma-builtin-json.c | 1416 ecma_value_t value = ecma_op_object_get_by_uint32_index (obj_p, index); in ecma_builtin_json_stringify()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-objects.h | 43 ecma_value_t ecma_op_object_get_by_uint32_index (ecma_object_t *object_p, uint32_t index);
|
D | ecma-container-object.c | 496 result = ecma_op_object_get_by_uint32_index (next_object_p, 0); in ecma_op_container_create() 507 result = ecma_op_object_get_by_uint32_index (next_object_p, 1); in ecma_op_container_create()
|
D | ecma-regexp-object.c | 2263 result = ecma_op_object_get_by_uint32_index (match_array_p, match_index++); in ecma_regexp_split_helper() 2902 result = ecma_op_object_get_by_uint32_index (ecma_get_object_from_value (result), 0); in ecma_regexp_replace_helper() 2998 result = ecma_op_object_get_by_uint32_index (current_object_p, 0); in ecma_regexp_replace_helper() 3045 result = ecma_op_object_get_by_uint32_index (current_object_p, n); in ecma_regexp_replace_helper() 3305 ecma_value_t match_str_value = ecma_op_object_get_by_uint32_index (result_value_p, 0); in ecma_regexp_match_helper()
|
D | ecma-conversion.c | 1012 ecma_value_t next = ecma_op_object_get_by_uint32_index (obj_p, idx); in ecma_op_create_list_from_array_like()
|
D | ecma-objects.c | 871 ecma_op_object_get_by_uint32_index (ecma_object_t *object_p, /**< the object */ in ecma_op_object_get_by_uint32_index() function
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/ |
D | ecma-builtin-typedarray-prototype.c | 994 ecma_op_object_get_by_uint32_index (source_obj_p, k), in ecma_builtin_typedarray_prototype_set() 1032 ecma_value_t index_value = ecma_op_object_get_by_uint32_index (obj_p, index); in ecma_op_typedarray_get_to_string_at_index()
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry.c | 2368 …ecma_value_t ret_value = ecma_op_object_get_by_uint32_index (ecma_get_object_from_value (obj_val),… in jerry_get_property_by_index()
|