Home
last modified time | relevance | path

Searched refs:ecma_string_get_length (Results 1 – 11 of 11) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-helpers.c520 const ecma_length_t original_len = ecma_string_get_length (original_str_p); in ecma_builtin_helper_string_prototype_object_index_of()
588 const ecma_length_t search_len = ecma_string_get_length (search_str_p); in ecma_builtin_helper_string_prototype_object_index_of()
617 ecma_length_t search_str_len = ecma_string_get_length (search_str_p); in ecma_builtin_helper_string_prototype_object_index_of()
684 const ecma_length_t original_len = ecma_string_get_length (original_str_p); in ecma_builtin_helper_string_find_index()
685 const ecma_length_t search_len = ecma_string_get_length (search_str_p); in ecma_builtin_helper_string_find_index()
Decma-builtin-string-prototype.c170 const ecma_length_t len = ecma_string_get_length (original_string_p); in ecma_builtin_string_prototype_char_at_helper()
700 const ecma_length_t len = ecma_string_get_length (get_string_val); in ecma_builtin_string_prototype_object_slice()
941 const ecma_length_t len = ecma_string_get_length (original_string_p); in ecma_builtin_string_prototype_object_substring()
1202 ecma_length_t size = ecma_string_get_length (this_string_p); in ecma_builtin_string_prototype_object_code_point_at()
1273 ecma_length_t this_len = ecma_string_get_length (this_string_p); in ecma_builtin_string_prototype_object_substr()
Decma-builtin-string-iterator-prototype.c91 ecma_length_t len = ecma_string_get_length (string_p); in ecma_builtin_string_iterator_prototype_object_next()
Decma-builtin-json.c1557 ecma_length_t num_of_chars = ecma_string_get_length (space_str_p); in ecma_builtin_json_stringify()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-get-put-value.c149 return ecma_make_uint32_value (ecma_string_get_length (string_p)); in ecma_op_get_value_object_base()
155 && index < ecma_string_get_length (string_p)) in ecma_op_get_value_object_base()
Decma-string-object.c105 ecma_length_t length = ecma_string_get_length (prim_value_str_p); in ecma_op_string_list_lazy_property_names()
Decma-objects.c104 ecma_length_t length = ecma_string_get_length (prim_value_str_p); in ecma_op_object_get_own_property()
118 if (index < ecma_string_get_length (prim_value_str_p)) in ecma_op_object_get_own_property()
469 ecma_length_t length = ecma_string_get_length (prim_value_str_p); in ecma_op_object_find_own()
482 if (index < ecma_string_get_length (prim_value_str_p)) in ecma_op_object_find_own()
1430 if (index < ecma_string_get_length (prim_value_str_p)) in ecma_op_object_put_with_receiver()
Decma-regexp-object.c2132 const lit_utf8_size_t string_length = ecma_string_get_length (string_p); in ecma_regexp_split_helper()
2740 const lit_utf8_size_t string_length = ecma_string_get_length (string_p); in ecma_regexp_replace_helper()
3079 const lit_utf8_size_t matched_str_length = ecma_string_get_length (matched_str_p); in ecma_regexp_replace_helper()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-string.c1069 ecma_length_t string_length = ecma_string_get_length (string_desc_p); in ecma_substring_copy_to_cesu8_buffer()
1164 ecma_length_t cesu8_str_length = ecma_string_get_length (string_desc_p); in ecma_substring_copy_to_utf8_buffer()
1949 ecma_string_get_length (const ecma_string_t *string_p) /**< ecma-string */ in ecma_string_get_length() function
2169 JERRY_ASSERT (index < ecma_string_get_length (string_p)); in ecma_string_get_char_at_pos()
2303 const ecma_length_t string_length = ecma_string_get_length (string_p); in ecma_string_substr()
2760 ecma_length_t str_len = ecma_string_get_length (str_p); in ecma_op_advance_string_index()
Decma-helpers.h358 ecma_length_t ecma_string_get_length (const ecma_string_t *string_p);
/third_party/jerryscript/jerry-core/api/
Djerry.c1936 return ecma_string_get_length (ecma_get_string_from_value (value)); in jerry_get_string_length()