Home
last modified time | relevance | path

Searched refs:ecma_op_to_length (Results 1 – 9 of 9) sorted by relevance

/third_party/jerryscript/tests/unit-core/
Dtest-to-length.c42 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/
Decma-conversion.h53 ecma_value_t ecma_op_to_length (ecma_value_t value, uint32_t *length);
Decma-dataview-object.c112 ecma_value_t byte_length_value = ecma_op_to_length (arguments_list_p[2], &viewByteLength); in ecma_op_dataview_create()
Decma-regexp-object.c2116 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()
Decma-conversion.c919 ecma_op_to_length (ecma_value_t value, /**< ecma value */ in ecma_op_to_length() function
Decma-typedarray-object.c1180 if (ECMA_IS_VALUE_ERROR (ecma_op_to_length (arg3, &new_length))) in ecma_op_create_typedarray()
Decma-objects.c905 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/
Decma-builtin-string-prototype.c800 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/
Decma-builtin-typedarray-prototype.c974 if (ECMA_IS_VALUE_ERROR (ecma_op_to_length (source_length, &source_length_uint32))) in ecma_builtin_typedarray_prototype_set()