Searched refs:string_arg (Results 1 – 3 of 3) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-regexp-prototype.c | 644 ecma_value_t string_arg, /**< source string */ in ecma_builtin_regexp_prototype_symbol_replace() argument 647 return ecma_regexp_replace_helper (this_arg, string_arg, replace_arg); in ecma_builtin_regexp_prototype_symbol_replace() 661 ecma_value_t string_arg) /**< string argument */ in ecma_builtin_regexp_prototype_symbol_search() argument 663 return ecma_regexp_search_helper (this_arg, string_arg); in ecma_builtin_regexp_prototype_symbol_search() 677 ecma_value_t string_arg, /**< source string */ in ecma_builtin_regexp_prototype_symbol_split() argument 680 return ecma_regexp_split_helper (this_arg, string_arg, limit_arg); in ecma_builtin_regexp_prototype_symbol_split() 694 ecma_value_t string_arg) /**< source string */ in ecma_builtin_regexp_prototype_symbol_match() argument 696 return ecma_regexp_match_helper (this_arg, string_arg); in ecma_builtin_regexp_prototype_symbol_match()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-regexp-object.h | 164 ecma_value_t ecma_regexp_replace_helper (ecma_value_t this_arg, ecma_value_t string_arg, ecma_value… 165 ecma_value_t ecma_regexp_search_helper (ecma_value_t regexp_arg, ecma_value_t string_arg); 166 ecma_value_t ecma_regexp_split_helper (ecma_value_t this_arg, ecma_value_t string_arg, ecma_value_t… 167 ecma_value_t ecma_regexp_match_helper (ecma_value_t this_arg, ecma_value_t string_arg);
|
D | ecma-regexp-object.c | 1925 ecma_value_t string_arg) /**< string argument */ in ecma_regexp_search_helper() argument 1936 ecma_string_t *const string_p = ecma_op_to_string (string_arg); in ecma_regexp_search_helper() 2007 ecma_value_t string_arg, /**< string value */ in ecma_regexp_split_helper() argument 2020 ecma_string_t *const string_p = ecma_op_to_string (string_arg); in ecma_regexp_split_helper() 2318 ecma_string_t *string_p = ecma_op_to_string (string_arg); in ecma_regexp_split_helper() 2694 ecma_value_t string_arg, /**< source string */ in ecma_regexp_replace_helper() argument 2709 ecma_string_t *string_p = ecma_op_to_string (string_arg); in ecma_regexp_replace_helper() 3218 ecma_value_t string_arg) /**< source string */ in ecma_regexp_match_helper() argument 3225 ecma_string_t *str_p = ecma_op_to_string (string_arg); in ecma_regexp_match_helper()
|