Home
last modified time | relevance | path

Searched refs:search_str_p (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-helpers.c542 ecma_string_t *search_str_p = ecma_op_to_string (arg1); in ecma_builtin_helper_string_prototype_object_index_of() local
544 if (JERRY_UNLIKELY (search_str_p == NULL)) in ecma_builtin_helper_string_prototype_object_index_of()
568 ecma_deref_ecma_string (search_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()
595 … if (ecma_builtin_helper_string_find_index (original_str_p, search_str_p, true, start, &index_of)) in ecma_builtin_helper_string_prototype_object_index_of()
604 … if (ecma_builtin_helper_string_find_index (original_str_p, search_str_p, true, start, &index_of)) 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()
631 if (ecma_builtin_helper_string_find_index (original_str_p, search_str_p, true, in ecma_builtin_helper_string_prototype_object_index_of()
645 …if (ecma_builtin_helper_string_find_index (original_str_p, search_str_p, use_first_index, start, &… in ecma_builtin_helper_string_prototype_object_index_of()
654 ecma_deref_ecma_string (search_str_p); in ecma_builtin_helper_string_prototype_object_index_of()
[all …]
Decma-builtin-string-prototype.c435 ecma_string_t *search_str_p = ecma_op_to_string (search_value); in ecma_builtin_string_prototype_object_replace() local
436 if (search_str_p == NULL) in ecma_builtin_string_prototype_object_replace()
464 const lit_utf8_byte_t *search_buf_p = ecma_string_get_chars (search_str_p, in ecma_builtin_string_prototype_object_replace()
494 ecma_make_string_value (search_str_p), in ecma_builtin_string_prototype_object_replace()
566 ecma_deref_ecma_string (search_str_p); in ecma_builtin_string_prototype_object_replace()
Decma-builtin-helpers.h60 ecma_builtin_helper_string_find_index (ecma_string_t *original_str_p, ecma_string_t *search_str_p, …