Searched refs:ecma_op_to_length (Results 1 – 9 of 9) sorted by relevance
/third_party/jerryscript/tests/unit-core/ |
D | test-to-length.c | 42 uint32_t result = ecma_op_to_length (int_num, &num); in main() 52 result = ecma_op_to_length (error_throw, &num); in main() 61 result = ecma_op_to_length (zero, &num); in main() 71 result = ecma_op_to_length (negative, &num); in main() 85 result = ecma_op_to_length (positive_infinity, &num); in main() 99 result = ecma_op_to_length (negative_infinity, &num); in main() 109 result = ecma_op_to_length (nan, &num); in main()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-conversion.h | 53 ecma_value_t ecma_op_to_length (ecma_value_t value, uint32_t *length);
|
D | ecma-dataview-object.c | 112 ecma_value_t byte_length_value = ecma_op_to_length (arguments_list_p[2], &viewByteLength); in ecma_op_dataview_create()
|
D | ecma-regexp-object.c | 2116 if (ECMA_IS_VALUE_ERROR (ecma_op_to_length (limit_arg, &limit))) in ecma_regexp_split_helper() 2208 const ecma_value_t length_value = ecma_op_to_length (result, &end_index); in ecma_regexp_split_helper() 2328 if (ECMA_IS_VALUE_ERROR (ecma_op_to_length (limit_arg, &limit))) in ecma_regexp_split_helper() 2810 result = ecma_op_to_length (lastindex_value, &replace_ctx.index); in ecma_regexp_replace_helper() 2930 if (ECMA_IS_VALUE_ERROR (ecma_op_to_length (result, &index))) in ecma_regexp_replace_helper() 3341 ecma_value_t length_value = ecma_op_to_length (this_index, &index); in ecma_regexp_match_helper()
|
D | ecma-conversion.c | 919 ecma_op_to_length (ecma_value_t value, /**< ecma value */ in ecma_op_to_length() function
|
D | ecma-typedarray-object.c | 1180 if (ECMA_IS_VALUE_ERROR (ecma_op_to_length (arg3, &new_length))) in ecma_op_create_typedarray()
|
D | ecma-objects.c | 905 ecma_value_t len_number = ecma_op_to_length (len_value, length_p); in ecma_op_object_get_length()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-string-prototype.c | 800 if (ECMA_IS_VALUE_ERROR (ecma_op_to_length (limit_value, &limit))) in ecma_builtin_string_prototype_object_split()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/ |
D | ecma-builtin-typedarray-prototype.c | 974 if (ECMA_IS_VALUE_ERROR (ecma_op_to_length (source_length, &source_length_uint32))) in ecma_builtin_typedarray_prototype_set()
|